Total Complexity | 3 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class CouldNotSendNotification extends \Exception |
||
8 | { |
||
9 | 1 | public static function invalidReceiver() |
|
10 | { |
||
11 | 1 | return new static( |
|
12 | 1 | 'The notifiable did not have a receiving phone number. Add a routeNotificationForSns |
|
13 | method or one of the conventional attributes to your notifiable.' |
||
14 | ); |
||
15 | } |
||
16 | |||
17 | 1 | public static function invalidMessageObject($message) |
|
23 | ); |
||
24 | } |
||
26 |