Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | protected function continueLoading(string $path, ContainerBuilder $container, array $config) |
||
28 | { |
||
29 | foreach ($config as $k => $v) { |
||
30 | $container->setParameter($path.'.'.$k, $v); |
||
31 | } |
||
32 | |||
33 | $loader = new PhpConfigFileLoader($container, new FileLocator(__DIR__.'/../../Resources/config/endpoint')); |
||
34 | $loader->load('form_post_response_mode.php'); |
||
35 | } |
||
36 | |||
59 |