Passed
Branch master (3eb6ea)
by Anton
04:36 queued 01:04
created
src/Notifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
             $recipients = [$recipients];
72 72
         }
73 73
         
74
-        if (!is_array($notifications)){
74
+        if (!is_array($notifications)) {
75 75
             /**
76 76
              * @var $notifications NotificationInterface[]
77 77
              */
Please login to merge, or discard this patch.
src/channels/TwilioChannel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
             ->createRequest()
57 57
             ->setMethod('post')
58 58
             ->setUrl($this->getUri())
59
-            ->addHeaders(['Authorization' => 'Basic ' . base64_encode("{$this->accountSid}:{$this->authToken}")])
59
+            ->addHeaders(['Authorization' => 'Basic '.base64_encode("{$this->accountSid}:{$this->authToken}")])
60 60
             ->setData($data)
61 61
             ->send();
62 62
     }
Please login to merge, or discard this patch.