| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 10 |
| Ratio | 100 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | 1 | public function __invoke(array $options) |
|
| 17 | { |
||
| 18 | 1 | $mailer = $this->getService($options['mailer'] ?? null); |
|
| 19 | 1 | $message = $this->getSwiftMessage($options); |
|
| 20 | |||
| 21 | 1 | $level = (int) ($options['level'] ?? Logger::DEBUG); |
|
| 22 | 1 | $bubble = (bool) ($options['bubble'] ?? true); |
|
| 23 | |||
| 24 | 1 | return new SwiftMailerHandler($mailer, $message, $level, $bubble); |
|
| 25 | } |
||
| 26 | } |
||
| 27 |