Total Complexity | 2 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class ContainerDelegator extends AbstractContainerConfigurator |
||
8 | { |
||
9 | private Container $container; |
||
10 | |||
11 | public function __construct(Container $container) |
||
12 | { |
||
13 | $this->container = $container; |
||
14 | } |
||
15 | |||
16 | public function delegateLookup(ContainerInterface $container): void |
||
19 | } |
||
20 | } |
||
21 |