AnnotationWithConstants.php 285 B

1234567891011121314151617
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. /**
  4. * @Annotation
  5. * @Target("ALL")
  6. */
  7. final class AnnotationWithConstants
  8. {
  9. public const INTEGER = 1;
  10. public const FLOAT = 1.2;
  11. public const STRING = '1.2.3';
  12. /** @var mixed */
  13. public $value;
  14. }