| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 35 | protected function registerResources(ContainerBuilder $container) |
||
| 36 | { |
||
| 37 | $templatingEngines = $container->getParameter('templating.engines'); |
||
| 38 | |||
| 39 | if (in_array('twig', $templatingEngines)) { |
||
| 40 | $container->setParameter( |
||
| 41 | 'twig.form.resources', |
||
| 42 | array_merge( |
||
| 43 | array('ItBlasterAttachFileBundle:Form:attach_file_widget.html.twig'), |
||
| 44 | $container->getParameter('twig.form.resources') |
||
| 45 | ) |
||
| 46 | ); |
||
| 47 | } |
||
| 48 | } |
||
| 49 | } |
||
| 50 |