Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / common / tests / Doctrine / Tests / Common / Annotations / Fixtures / AnnotationWithRequiredAttributesWithoutContructor.php
1 <?php
2
3 namespace Doctrine\Tests\Common\Annotations\Fixtures;
4
5 /**
6  * @Annotation
7  * @Target("ALL")
8  */
9 final class AnnotationWithRequiredAttributesWithoutContructor
10 {
11
12     /**
13      * @Required
14      * @var string
15      */
16     public $value;
17
18     /**
19      * @Required
20      * @var Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetAnnotation
21      */
22     public $annot;
23
24 }