TraitWithAnnotatedParameters.php 211 B

12345678910111213
  1. <?php
  2. namespace Symfony\Component\Debug\Tests\Fixtures;
  3. trait TraitWithAnnotatedParameters
  4. {
  5. /**
  6. * `@param` annotations in traits are not parsed.
  7. */
  8. public function isSymfony()
  9. {
  10. }
  11. }