| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 11 |
| Ratio | 100 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | 2 | public function __invoke(array $options) |
|
| 14 | { |
||
| 15 | 2 | $toEmail = (array) ($options['to'] ?? []); |
|
| 16 | 2 | $subject = (string) ($options['subject'] ?? true); |
|
| 17 | 2 | $fromEmail = (string) ($options['from'] ?? ''); |
|
| 18 | 2 | $level = (int) ($options['level'] ?? Logger::DEBUG); |
|
| 19 | 2 | $bubble = (bool) ($options['bubble'] ?? true); |
|
| 20 | 2 | $maxColumnWidth = (int) ($options['maxColumnWidth'] ?? 70); |
|
| 21 | |||
| 22 | 2 | return new NativeMailerHandler($toEmail, $subject, $fromEmail, $level, $bubble, $maxColumnWidth); |
|
| 23 | } |
||
| 24 | } |
||
| 25 |