diff options
Diffstat (limited to 'vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php')
-rw-r--r-- | vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php b/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php new file mode 100644 index 00000000..6bab62f9 --- /dev/null +++ b/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php @@ -0,0 +1,12 @@ +<?php + +namespace Symfony\Component\Debug\Tests\Fixtures; + +/** + * @deprecated but this is a test + * deprecation notice + * @foobar + */ +interface DeprecatedInterface +{ +} |