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