Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
9 | abstract class AbstractContainerConfigurator |
||
10 | { |
||
11 | protected function set(string $id, $definition): void |
||
12 | { |
||
13 | throw new \RuntimeException("Method 'set' does not exist."); |
||
14 | } |
||
15 | |||
16 | protected function setMultiple(array $config): void |
||
19 | } |
||
20 | |||
21 | protected function delegateLookup(ContainerInterface $container): void |
||
24 | } |
||
25 | |||
26 | protected function hasDefinition($id): bool |
||
31 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.