| Conditions | 3 |
| Paths | 3 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function process(ContainerBuilder $container) |
||
| 17 | { |
||
| 18 | if (false !== ($template = $container->getParameter('a2lix_auto_form.templating'))) { |
||
| 19 | $resources = $container->getParameter('twig.form.resources'); |
||
| 20 | |||
| 21 | if (!in_array($template, $resources, true)) { |
||
| 22 | $resources[] = $template; |
||
| 23 | $container->setParameter('twig.form.resources', $resources); |
||
| 24 | } |
||
| 25 | } |
||
| 26 | } |
||
| 27 | } |
||
| 28 |