| Total Complexity | 6 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| 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) |
|
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param ReflectionParameter $reflector |
||
| 33 | * |
||
| 34 | * @throws ContainerException |
||
| 35 | * @throws ReflectionException |
||
| 36 | * |
||
| 37 | * @return mixed|null |
||
| 38 | */ |
||
| 39 | 54 | protected function autoWiringArguments(ReflectionParameter $reflector) |
|
| 55 |