Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function process(ContainerBuilder $container) |
||
25 | { |
||
26 | if (!$container->hasDefinition('twig.loader.filesystem')) { |
||
27 | return; |
||
28 | } |
||
29 | |||
30 | $loader = $container->getDefinition('twig.loader.filesystem'); |
||
31 | $loader->addMethodCall('addPath', [__DIR__ . '/../../../../Resources/views', 'OAuth2FrameworkBundle']); |
||
32 | } |
||
33 | } |
||
34 |