@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | /** |
| 16 | 16 | * @var \Zing\LaravelSms\SmsManager |
| 17 | 17 | */ |
| 18 | - protected $smsManager ; |
|
| 18 | + protected $smsManager; |
|
| 19 | 19 | |
| 20 | 20 | /** |
| 21 | 21 | * Create a new database channel. |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | { |
| 35 | 35 | $message = $this->getData($notifiable, $notification); |
| 36 | 36 | $receiver = $this->resolveReceiver($notifiable, $notification); |
| 37 | - if (! $receiver) { |
|
| 37 | + if (!$receiver) { |
|
| 38 | 38 | return; |
| 39 | 39 | } |
| 40 | 40 | |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | ); |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - if (! $message instanceof SmsMessage) { |
|
| 50 | + if (!$message instanceof SmsMessage) { |
|
| 51 | 51 | return; |
| 52 | 52 | } |
| 53 | 53 | |