Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function load(array $configs, ContainerBuilder $container) { |
||
23 | $processor = new Processor(); |
||
24 | $configuration = new Configuration(); |
||
25 | $config = $processor->processConfiguration($configuration, $configs); |
||
26 | $config['cdn'] = $this->filterCdn($config['cdn']); |
||
27 | $container->setParameter('html5_cache', $config); |
||
28 | $loader = new YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
||
29 | $loader->load('services.yml'); |
||
30 | } |
||
31 | |||
62 |