| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function load(array $configs, ContainerBuilder $container) |
||
| 20 | { |
||
| 21 | $configuration = new Configuration(); |
||
| 22 | $config = $this->processConfiguration($configuration, $configs); |
||
| 23 | |||
| 24 | $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
||
| 25 | $loader->load('container.yml'); |
||
| 26 | |||
| 27 | $container->setParameter('symfony_debug_toolbar_git.repository_commit_url', $config['repository_commit_url']); |
||
| 28 | } |
||
| 29 | } |
||
| 30 |