Conditions | 3 |
Paths | 4 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3.0261 |
Changes | 0 |
1 | <?php |
||
20 | 2 | public function __construct(?array $recipients = [], Throwable $previous = null) |
|
21 | { |
||
22 | 2 | $this->recipients = is_null($recipients) ? [] : $recipients; |
|
23 | 2 | $message = 'Failed to send email.'; |
|
24 | 2 | if (count($recipients) > 0) { |
|
25 | $message .= ' Recipients: ' . implode(', ', $this->recipients()); |
||
26 | } |
||
27 | 2 | parent::__construct($message, 0, $previous); |
|
28 | 2 | } |
|
29 | |||
38 |