Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class Kernel extends BaseKernel |
||
11 | { |
||
12 | use MicroKernelTrait; |
||
|
|||
13 | |||
14 | protected function configureContainer(ContainerConfigurator $container): void |
||
15 | { |
||
16 | $container->import('../config/{packages}/*.yaml'); |
||
17 | $container->import('../config/{packages}/'.$this->environment.'/*.yaml'); |
||
18 | $container->import('../config/{services}.yaml'); |
||
19 | $container->import('../config/{services}_'.$this->environment.'.yaml'); |
||
20 | } |
||
21 | |||
22 | protected function configureRoutes(RoutingConfigurator $routes): void |
||
27 | } |
||
28 | } |
||
29 |