AnnotationWithVarType.php 783 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
  3. /**
  4. * @Annotation
  5. * @Target("ALL")
  6. */
  7. final class AnnotationWithVarType
  8. {
  9. /** @var mixed */
  10. public $mixed;
  11. /** @var boolean */
  12. public $boolean;
  13. /** @var bool */
  14. public $bool;
  15. /** @var float */
  16. public $float;
  17. /** @var string */
  18. public $string;
  19. /** @var integer */
  20. public $integer;
  21. /** @var array */
  22. public $array;
  23. /** @var \EasySwoole\DoctrineAnnotation\Tests\Fixtures\AnnotationTargetAll */
  24. public $annotation;
  25. /** @var array<integer> */
  26. public $arrayOfIntegers;
  27. /** @var string[] */
  28. public $arrayOfStrings;
  29. /** @var \EasySwoole\DoctrineAnnotation\Tests\Fixtures\AnnotationTargetAll[] */
  30. public $arrayOfAnnotations;
  31. }