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