diff options
Diffstat (limited to 'vendor/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php')
-rw-r--r-- | vendor/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php b/vendor/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php new file mode 100644 index 00000000..2bd337e5 --- /dev/null +++ b/vendor/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php @@ -0,0 +1,17 @@ +<?php + +namespace Symfony\Component\Debug\Tests\Fixtures; + +class ExtendedFinalMethod extends FinalMethod +{ + /** + * {@inheritdoc} + */ + public function finalMethod() + { + } + + public function anotherMethod() + { + } +} |