Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / common / tests / Doctrine / Tests / Common / Annotations / Fixtures / AnnotationWithVarType.php
1 <?php
2
3 namespace Doctrine\Tests\Common\Annotations\Fixtures;
4
5 /**
6  * @Annotation
7  * @Target("ALL")
8  */
9 final class AnnotationWithVarType
10 {
11
12     /**
13      * @var mixed
14      */
15     public $mixed;
16
17     /**
18      * @var boolean
19      */
20     public $boolean;
21
22     /**
23      * @var bool
24      */
25     public $bool;
26
27     /**
28      * @var float
29      */
30     public $float;
31
32     /**
33      * @var string
34      */
35     public $string;
36
37     /**
38      * @var integer
39      */
40     public $integer;
41
42     /**
43      * @var array
44      */
45     public $array;
46
47     /**
48      * @var Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetAll
49      */
50     public $annotation;
51
52     /**
53      * @var array<integer>
54      */
55     public $arrayOfIntegers;
56
57     /**
58      * @var array<Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetAll>
59      */
60     public $arrayOfAnnotations;
61
62 }