| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | final class ContainerDelegator extends AbstractContainerConfigurator |
||
| 12 | { |
||
| 13 | private Container $container; |
||
| 14 | |||
| 15 | 2 | public function __construct(Container $container) |
|
| 16 | { |
||
| 17 | 2 | $this->container = $container; |
|
| 18 | 2 | } |
|
| 19 | |||
| 20 | /** |
||
| 21 | * @psalm-suppress InaccessibleMethod |
||
| 22 | */ |
||
| 23 | 2 | public function delegateLookup(ContainerInterface $container): void |
|
| 26 | 2 | } |
|
| 27 | } |
||
| 28 |