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