AnnotationWithConstants.php 274 B

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