Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | protected function configureContainer(ContainerConfigurator $container) |
||
30 | { |
||
31 | $container->extension('framework', [ |
||
32 | 'secret' => "F00", |
||
33 | 'router' => ['utf8' => true] |
||
34 | ]); |
||
35 | |||
36 | $container->extension('twig', [ |
||
37 | 'paths' => ['tests/app/src/Resources/views' => '__main__'] |
||
38 | ]); |
||
39 | |||
40 | $container->import('Resources/config/services.test.yaml'); |
||
41 | $container->import('Resources/config/controller.test.yaml'); |
||
42 | } |
||
49 | } |