Passed
Push — 248-ga-input-required-and-not-... ( bbe86b...ffa52a )
by Zing
09:34 queued 04:37
created
src/Channels/SmsChannel.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
47 47
             );
48 48
         }
49 49
 
50
-        if (! $message instanceof SmsMessage) {
50
+        if (!$message instanceof SmsMessage) {
51 51
             return;
52 52
         }
53 53
 
Please login to merge, or discard this patch.