Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
55 | 6 | private function getDependencies(ReflectionMethod $method): array |
|
56 | 6 | { |
|
57 | 6 | $parameters = []; |
|
58 | $annotations = $this->getAnnotationParameters((string) $method->getDocComment()); |
||
59 | 6 | foreach ($method->getParameters() as $parameter) { |
|
60 | $parameters[] = $this->parameter->getName($parameter, $annotations); |
||
61 | } |
||
62 | return $parameters; |
||
63 | } |
||
65 |