TraitWithInternalMethod.php 163 B

12345678910111213
  1. <?php
  2. namespace Symfony\Component\Debug\Tests\Fixtures;
  3. trait TraitWithInternalMethod
  4. {
  5. /**
  6. * @internal
  7. */
  8. public function foo()
  9. {
  10. }
  11. }