Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types = 1); |
||
23 | 11 | public function resolve(\ReflectionClass $classReflection, ClassMetadata $classMetadata) |
|
24 | { |
||
25 | /** @var \ReflectionMethod $method */ |
||
26 | 11 | foreach ($classReflection->getMethods() as $method) { |
|
27 | 10 | $this->resolveMethodAnnotations( |
|
28 | $method, |
||
29 | 10 | $this->resolveMethodMetadata($method, $classMetadata) |
|
30 | ); |
||
31 | } |
||
32 | |||
33 | 11 | return $classMetadata; |
|
34 | } |
||
35 | |||
52 |