ClassWithAnnotationWithTargetSyntaxError.php 401 B

123456789101112131415161718192021
  1. <?php
  2. namespace Doctrine\Tests\Common\Annotations\Fixtures;
  3. use Doctrine\Tests\Common\Annotations\Fixtures\AnnotationWithTargetSyntaxError;
  4. /**
  5. * @AnnotationWithTargetSyntaxError()
  6. */
  7. class ClassWithAnnotationWithTargetSyntaxError
  8. {
  9. /**
  10. * @AnnotationWithTargetSyntaxError()
  11. */
  12. public $foo;
  13. /**
  14. * @AnnotationWithTargetSyntaxError()
  15. */
  16. public function bar(){}
  17. }