Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 9 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
14 | View Code Duplication | protected function configureContainer(ContainerConfigurator $container): void |
|
15 | { |
||
16 | $container->import('../config/{packages}/*.php'); |
||
17 | $container->import('../config/{packages}/'.$this->environment.'/*.php'); |
||
18 | |||
19 | if (is_file($path = \dirname(__DIR__).'/config/services.php')) { |
||
20 | (require $path)($container->withPath($path), $this); |
||
21 | } |
||
22 | } |
||
23 | |||
34 |