FinalMethod.php 283 B

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