ExtendedFinalMethod.php 268 B

12345678910111213141516171819
  1. <?php
  2. namespace Symfony\Component\Debug\Tests\Fixtures;
  3. class ExtendedFinalMethod extends FinalMethod
  4. {
  5. use FinalMethod2Trait;
  6. /**
  7. * {@inheritdoc}
  8. */
  9. public function finalMethod()
  10. {
  11. }
  12. public function anotherMethod()
  13. {
  14. }
  15. }