diff options
Diffstat (limited to 'vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php')
-rw-r--r-- | vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php b/vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php new file mode 100644 index 00000000..05f18e83 --- /dev/null +++ b/vendor/symfony/debug/Tests/Fixtures/InternalTrait2.php @@ -0,0 +1,23 @@ +<?php + +namespace Symfony\Component\Debug\Tests\Fixtures; + +/** + * @internal + */ +trait InternalTrait2 +{ + /** + * @internal since version 3.4 + */ + public function internalMethod() + { + } + + /** + * @internal but should not trigger a deprecation + */ + public function usedInInternalClass() + { + } +} |