| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | 2 | public function __construct(ContainerInterface $container, ContainerProxyConfig $config) |
|
| 13 | { |
||
| 14 | 2 | if ($container instanceof Container) { |
|
| 15 | 2 | $delegator = new ContainerDelegator($container); |
|
| 16 | 2 | $delegator->delegateLookup($this); |
|
| 17 | } |
||
| 18 | |||
| 19 | 2 | parent::__construct($container, $config); |
|
| 20 | 2 | } |
|
| 22 |