Attributes.php 295 B

123456789101112131415
  1. <?php
  2. namespace Doctrine\Common\Annotations\Annotation;
  3. /**
  4. * Annotation that can be used to signal to the parser
  5. * to check the types of all declared attributes during the parsing process.
  6. *
  7. * @Annotation
  8. */
  9. final class Attributes
  10. {
  11. /** @var array<Attribute> */
  12. public $value;
  13. }