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