| Conditions | 3 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | 11 | public function process(ContainerBuilder $container) |
|
| 31 | { |
||
| 32 | // If swiftmailer is not enabled just return (avoid exceptions) |
||
| 33 | 11 | if (!$container->hasParameter('yokai_messenger.swiftmailer_enabled') || |
|
| 34 | 11 | !$container->getParameter('yokai_messenger.swiftmailer_enabled') |
|
| 35 | ) { |
||
| 36 | 7 | return; |
|
| 37 | } |
||
| 38 | |||
| 39 | 4 | parent::process($container); |
|
| 40 | 4 | } |
|
| 41 | } |
||
| 42 |