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