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