Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / common / tests / Doctrine / Tests / Common / Annotations / Fixtures / AnnotationTargetClass.php
1 <?php
2
3 namespace Doctrine\Tests\Common\Annotations\Fixtures;
4
5
6 /**
7  * @Annotation
8  * @Target("CLASS")
9  */
10 final class AnnotationTargetClass
11 {
12     public $data;
13     public $name;
14     public $target;
15 }