| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 23 | public function load(array $configs, ContainerBuilder $container) |
||
| 24 | { |
||
| 25 | $processor = new Processor(); |
||
| 26 | $configuration = new Configuration(); |
||
| 27 | $config = $processor->processConfiguration($configuration, $configs); |
||
| 28 | $config['cdn'] = CdnHelper::createInstance()->filterCdn($config['cdn']); |
||
| 29 | $container->setParameter('html5_verti_template', $config); |
||
| 30 | $loader = new YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
||
| 31 | $loader->load('services.yml'); |
||
| 32 | } |
||
| 33 | |||
| 41 | } |