InternalTrait2.php 311 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Symfony\Component\Debug\Tests\Fixtures;
  3. /**
  4. * @internal
  5. */
  6. trait InternalTrait2
  7. {
  8. /**
  9. * @internal
  10. */
  11. public function internalMethod()
  12. {
  13. }
  14. /**
  15. * @internal but should not trigger a deprecation
  16. */
  17. public function usedInInternalClass()
  18. {
  19. }
  20. }