AnnotationTargetPropertyMethod.php 293 B

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