AnnotationTargetAnnotation.php 212 B

1234567891011121314
  1. <?php
  2. namespace Doctrine\Tests\Common\Annotations\Fixtures;
  3. /**
  4. * @Annotation
  5. * @Target({ "ANNOTATION" })
  6. */
  7. final class AnnotationTargetAnnotation
  8. {
  9. public $data;
  10. public $name;
  11. public $target;
  12. }