FinalMethod.php 328 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Symfony\Component\Debug\Tests\Fixtures;
  3. class FinalMethod
  4. {
  5. /**
  6. * @final since version 3.3.
  7. */
  8. public function finalMethod()
  9. {
  10. }
  11. /**
  12. * @final
  13. *
  14. * @return int
  15. */
  16. public function finalMethod2()
  17. {
  18. }
  19. public function anotherMethod()
  20. {
  21. }
  22. }