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