boilerplate.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. // This file is part of GNU social - https://www.gnu.org/software/social
  3. //
  4. // GNU social is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Affero General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // GNU social is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Affero General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Affero General Public License
  15. // along with GNU social. If not, see <http://www.gnu.org/licenses/>.
  16. /**
  17. * Description of this file.
  18. *
  19. * @package samples
  20. * @author Diogo Cordeiro <diogo@fc.up.pt>
  21. * @copyright 2019 Free Software Foundation, Inc http://www.fsf.org
  22. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  23. */
  24. namespace samples;
  25. defined('GNUSOCIAL') || die();
  26. require_once __DIR__ . DIRECTORY_SEPARATOR . 'SampleHandler.php';
  27. /**
  28. * Description of this class.
  29. *
  30. * @copyright 2019 Free Software Foundation, Inc http://www.fsf.org
  31. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
  32. */
  33. class MySampleClass
  34. {
  35. /**
  36. * Constructor for the sample class.
  37. *
  38. * @param string $dummy_word just because.
  39. * @param int $result another just because.
  40. */
  41. public function __construct(string $dummy_word = '', ?int $result = null)
  42. {
  43. global $demo;
  44. $this->niceWorld();
  45. }
  46. /**
  47. * How cool is this function.
  48. *
  49. * @return string
  50. */
  51. public function niceWorld(): string
  52. {
  53. return 'hello, world.';
  54. }
  55. }