Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
20 | 1 | public function __construct(Notification $notification, Throwable $previous = null) |
|
21 | { |
||
22 | 1 | $this->notification = $notification; |
|
23 | 1 | parent::__construct( |
|
24 | 1 | sprintf( |
|
25 | 1 | 'Failed to send notification: "%s" created at %s', |
|
26 | 1 | $notification->subject()->subject(), |
|
27 | 1 | $notification->createdAt()->format(DateTime::W3C) |
|
28 | ), |
||
29 | 1 | 0, |
|
30 | 1 | $previous |
|
31 | ); |
||
32 | 1 | } |
|
33 | |||
42 |