AnnotationTargetAnnotation.php 281 B

1234567891011121314151617
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. /**
  4. * @Annotation
  5. * @Target({ "ANNOTATION" })
  6. */
  7. final class AnnotationTargetAnnotation
  8. {
  9. /** @var mixed */
  10. public $data;
  11. /** @var mixed */
  12. public $name;
  13. /** @var mixed */
  14. public $target;
  15. }