@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | public function send($notifiable, Notification $notification): void |
| 19 | 19 | { |
| 20 | - if (! $to = $notifiable->routeNotificationFor('smsbroadcast')) { |
|
| 20 | + if (!$to = $notifiable->routeNotificationFor('smsbroadcast')) { |
|
| 21 | 21 | return; |
| 22 | 22 | } |
| 23 | 23 | |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | $message = new SmsBroadcastMessage($message); |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | - if (! $message instanceof SmsBroadcastMessage) { |
|
| 30 | + if (!$message instanceof SmsBroadcastMessage) { |
|
| 31 | 31 | return; |
| 32 | 32 | } |
| 33 | 33 | |