AnnotationWithVarType.php 847 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. namespace Doctrine\Tests\Common\Annotations\Fixtures;
  3. /**
  4. * @Annotation
  5. * @Target("ALL")
  6. */
  7. final class AnnotationWithVarType
  8. {
  9. /**
  10. * @var mixed
  11. */
  12. public $mixed;
  13. /**
  14. * @var boolean
  15. */
  16. public $boolean;
  17. /**
  18. * @var bool
  19. */
  20. public $bool;
  21. /**
  22. * @var float
  23. */
  24. public $float;
  25. /**
  26. * @var string
  27. */
  28. public $string;
  29. /**
  30. * @var integer
  31. */
  32. public $integer;
  33. /**
  34. * @var array
  35. */
  36. public $array;
  37. /**
  38. * @var Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetAll
  39. */
  40. public $annotation;
  41. /**
  42. * @var array<integer>
  43. */
  44. public $arrayOfIntegers;
  45. /**
  46. * @var array<Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetAll>
  47. */
  48. public $arrayOfAnnotations;
  49. }