| 1 | <?php declare(strict_types = 1); |
||
| 16 | class AnnotationPropertyResolver extends AbstractAnnotationResolver implements AnnotationResolverInterface |
||
| 17 | { |
||
| 18 | use PropertyResolverTrait; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * {@inheritDoc} |
||
| 22 | */ |
||
| 23 | 11 | public function resolve(\ReflectionClass $classReflection, ClassMetadata $classMetadata) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * Resolve class property annotations. |
||
| 38 | * |
||
| 39 | * @param \ReflectionProperty $property |
||
| 40 | * @param PropertyMetadata $propertyMetadata |
||
| 41 | */ |
||
| 42 | 10 | protected function resolveClassPropertyAnnotations(\ReflectionProperty $property, PropertyMetadata $propertyMetadata) |
|
| 51 | } |
||
| 52 |