Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function __invoke(ContainerInterface $serviceLocator) |
||
19 | { |
||
20 | $configuration = $serviceLocator->get('Configuration'); |
||
21 | $serviceConfig = isset($configuration['mt_mail']['transport_options']) |
||
22 | ? $configuration['mt_mail']['transport_options'] : []; |
||
23 | $options = new SmtpOptions($serviceConfig); |
||
24 | $smtp = new Smtp($options); |
||
25 | |||
26 | 2 | return $smtp; |
|
27 | } |
||
28 | } |
||
29 |