Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / common / tests / Doctrine / Tests / Common / Annotations / Fixtures / ClassWithInvalidAnnotationTargetAtProperty.php
1 <?php
2
3 namespace Doctrine\Tests\Common\Annotations\Fixtures;
4
5 use Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetClass;
6 use Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetAnnotation;
7
8 /**
9  * @AnnotationTargetClass("Some data")
10  */
11 class ClassWithInvalidAnnotationTargetAtProperty
12 {
13
14     /**
15      * @AnnotationTargetClass("Bar")
16      */
17     public $foo;
18
19
20     /**
21      * @AnnotationTargetAnnotation("Foo")
22      */
23     public $bar;
24 }