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