FinalMethod.php 224 B

123456789101112131415161718
  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. public function anotherMethod()
  12. {
  13. }
  14. }