summaryrefslogtreecommitdiff
path: root/vendor/symfony/debug/Tests/Fixtures/FinalMethod.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/debug/Tests/Fixtures/FinalMethod.php')
-rw-r--r--vendor/symfony/debug/Tests/Fixtures/FinalMethod.php17
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()
+ {
+ }
+}