Total Complexity | 8 |
Total Lines | 49 |
Duplicated Lines | 0 % |
Coverage | 80% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | abstract class AutoWiringAware implements ContainerInterface |
||
13 | { |
||
14 | /** |
||
15 | * @param ReflectionParameter $reflector |
||
16 | * |
||
17 | * @throws ContainerException |
||
18 | * @throws ReflectionException |
||
19 | * |
||
20 | * @return mixed |
||
21 | */ |
||
22 | 15 | protected function argumentWithoutType(ReflectionParameter $reflector) |
|
37 | } |
||
38 | |||
39 | /** |
||
40 | * @param ReflectionParameter $reflector |
||
41 | * |
||
42 | * @throws ContainerException |
||
43 | * @throws ReflectionException |
||
44 | * |
||
45 | * @return mixed|null |
||
46 | */ |
||
47 | 54 | protected function autoWiringArguments(ReflectionParameter $reflector) |
|
63 |