Passed
Push — master ( 92841a...ba27de )
by Zing
39:09 queued 33:03
created
src/Channels/SmsChannel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     {
40 40
         $message = $this->getData($notifiable, $notification);
41 41
         $receiver = $this->resolveReceiver($notifiable, $notification);
42
-        if (! $receiver) {
42
+        if (!$receiver) {
43 43
             return;
44 44
         }
45 45
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
             );
53 53
         }
54 54
 
55
-        if (! $message instanceof Message) {
55
+        if (!$message instanceof Message) {
56 56
             return;
57 57
         }
58 58
 
Please login to merge, or discard this patch.
src/Gateways/MeilianGateway.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
                 'content' => strpos($content, '【') === 0 ? $content : $signature . $content,
45 45
             ]
46 46
         );
47
-        if (! is_string($result)) {
47
+        if (!is_string($result)) {
48 48
             throw new CouldNotSendNotification('meilian response does only seem to accept string.');
49 49
         }
50 50
 
Please login to merge, or discard this patch.