ClassWithAnnotationWithTargetSyntaxError.php 440 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. use EasySwoole\DoctrineAnnotation\Tests\Fixtures\AnnotationWithTargetSyntaxError;
  4. /**
  5. * @AnnotationWithTargetSyntaxError()
  6. */
  7. class ClassWithAnnotationWithTargetSyntaxError
  8. {
  9. /**
  10. * @var mixed
  11. * @AnnotationWithTargetSyntaxError()
  12. */
  13. public $foo;
  14. /**
  15. * @AnnotationWithTargetSyntaxError()
  16. */
  17. public function bar(): void
  18. {
  19. }
  20. }