| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | protected function registerResources(ContainerBuilder $container) |
||
| 32 | { |
||
| 33 | $templatingEngines = $container->getParameter('templating.engines'); |
||
| 34 | |||
| 35 | if (in_array('twig', $templatingEngines)) { |
||
| 36 | $container->setParameter('twig.form.resources', array_merge( |
||
| 37 | array('FenrizbesCropBundle:Form:fields.html.twig'), |
||
| 38 | $container->getParameter('twig.form.resources') |
||
| 39 | )); |
||
| 40 | } |
||
| 41 | } |
||
| 42 | } |
||
| 43 |