Conditions | 3 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
25 | 4 | public function process(ContainerBuilder $container) |
|
26 | { |
||
27 | 4 | if (!$container->has('logger') || !$container->has('fos_http_cache.event_listener.log')) { |
|
28 | 1 | return; |
|
29 | } |
||
30 | |||
31 | 3 | $container->getDefinition('fos_http_cache.event_listener.log') |
|
32 | 3 | ->setAbstract(false) |
|
33 | 3 | ->addTag('kernel.event_subscriber') |
|
34 | ; |
||
35 | 3 | } |
|
36 | } |
||
37 |