Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / common / tests / Doctrine / Tests / Common / Annotations / Fixtures / AnnotationWithConstants.php
1 <?php
2
3 namespace Doctrine\Tests\Common\Annotations\Fixtures;
4
5 /**
6  * @Annotation
7  * @Target("ALL")
8  */
9 final class AnnotationWithConstants
10 {
11
12     const INTEGER = 1;
13     const FLOAT   = 1.2;
14     const STRING  = '1.2.3';
15
16     /**
17      * @var mixed
18      */
19     public $value;
20 }