| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function load(array $configs, ContainerBuilder $container) |
||
| 21 | { |
||
| 22 | $processor = new Processor(); |
||
| 23 | $config = $processor->processConfiguration(new Configuration(), $configs); |
||
| 24 | |||
| 25 | $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
||
| 26 | $loader->load('a2lix_form.xml'); |
||
| 27 | $loader->load('object_info.xml'); |
||
| 28 | |||
| 29 | $container->setParameter('a2lix_auto_form.templating', $config['templating']); |
||
| 30 | } |
||
| 31 | } |
||
| 32 |