1234567891011121314151617 |
- <?php
- namespace EasySwoole\DoctrineAnnotation\Tests\Fixtures;
- use EasySwoole\DoctrineAnnotation\Tests\Fixtures\AnnotationTargetPropertyMethod;
- /**
- * @AnnotationTargetPropertyMethod("Some data")
- */
- class ClassWithInvalidAnnotationTargetAtClass
- {
- /**
- * @var mixed
- * @AnnotationTargetPropertyMethod("Bar")
- */
- public $foo;
- }
|