AnnotationWithRequiredAttributesWithoutContructor.php 376 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Doctrine\Tests\Common\Annotations\Fixtures;
  3. /**
  4. * @Annotation
  5. * @Target("ALL")
  6. */
  7. final class AnnotationWithRequiredAttributesWithoutContructor
  8. {
  9. /**
  10. * @Required
  11. * @var string
  12. */
  13. public $value;
  14. /**
  15. * @Required
  16. * @var Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetAnnotation
  17. */
  18. public $annot;
  19. }