AnnotationEnum.php 324 B

1234567891011121314151617181920
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. /**
  4. * @Annotation
  5. * @Target("ALL")
  6. */
  7. final class AnnotationEnum
  8. {
  9. public const ONE = 'ONE';
  10. public const TWO = 'TWO';
  11. public const THREE = 'THREE';
  12. /**
  13. * @var mixed
  14. * @Enum({"ONE","TWO","THREE"})
  15. */
  16. public $value;
  17. }