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