Test Failed
Push — master ( a2d350...d0d57c )
by
unknown
16:25 queued 06:16
created
src/AfricasTalkingServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
          */
19 19
         $this->app->when(AfricasTalkingChannel::class)
20 20
             ->needs(AfricasTalkingSDK::class)
21
-            ->give(function () {
21
+            ->give(function() {
22 22
                 $userName = config('services.africastalking.username');
23 23
                 $key = config('services.africastalking.key');
24 24
                 if (is_null($userName) || is_null($key)) {
Please login to merge, or discard this patch.
src/AfricasTalkingChannel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
             $phoneNumber = $notifiable->phone_number ?? $message->getTo();
35 35
         }
36 36
 
37
-        if(empty($phoneNumber)) {
37
+        if (empty($phoneNumber)) {
38 38
             throw InvalidPhonenumber::configurationNotSet();
39 39
         }
40 40
 
Please login to merge, or discard this patch.
src/AfricasTalkingMessage.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,12 +39,12 @@
 block discarded – undo
39 39
         return $this;
40 40
     }
41 41
 
42
-     /**
43
-     * Set recipient for this message.
44
-     *
45
-     * @param string $from
46
-     * @return self
47
-     */
42
+        /**
43
+         * Set recipient for this message.
44
+         *
45
+         * @param string $from
46
+         * @return self
47
+         */
48 48
     public function to(string $to): self
49 49
     {
50 50
         $this->to = trim($to);
Please login to merge, or discard this patch.