17 líneas
		
	
	
		
			327 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			17 líneas
		
	
	
		
			327 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Doctrine\Tests\Common\Annotations\Fixtures;
 | |
| 
 | |
| use Doctrine\Tests\Common\Annotations\Fixtures\AnnotationTargetPropertyMethod;
 | |
| 
 | |
| /**
 | |
|  * @AnnotationTargetPropertyMethod("Some data")
 | |
|  */
 | |
| class ClassWithInvalidAnnotationTargetAtClass
 | |
| {
 | |
| 
 | |
|     /**
 | |
|      * @AnnotationTargetPropertyMethod("Bar")
 | |
|      */
 | |
|     public $foo;
 | |
| } |