Total Complexity | 6 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | abstract class AutoWiringAware implements ContainerInterface |
||
13 | { |
||
14 | /** |
||
15 | * @throws ContainerException |
||
16 | * @throws ReflectionException |
||
17 | * |
||
18 | * @return mixed |
||
19 | */ |
||
20 | 18 | protected function argumentWithoutType(ReflectionParameter $reflector) |
|
27 | } |
||
28 | |||
29 | /** |
||
30 | * @throws ContainerException |
||
31 | * @throws ReflectionException |
||
32 | * |
||
33 | * @return mixed|null |
||
34 | */ |
||
35 | 36 | protected function autoWiringArguments(ReflectionParameter $reflector) |
|
51 |