ClassWithImportedIgnoredAnnotation.php 273 B

123456789101112131415
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. use EasySwoole\DoctrineAnnotation\Tests\Fixtures\Annotation\Param;
  4. class ClassWithImportedIgnoredAnnotation
  5. {
  6. /**
  7. * @param string $foo
  8. */
  9. public function something($foo): void
  10. {
  11. }
  12. }