Test Failed
Push — master ( 96e40b...4a9569 )
by
unknown
17:48 queued 07:57
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   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,11 +34,11 @@
 block discarded – undo
34 34
             $phoneNumber = $notifiable->phone_number;
35 35
         }
36 36
 
37
-        if(!empty($message->getTo())) {
37
+        if (!empty($message->getTo())) {
38 38
             $phoneNumber = $message->getTo();
39 39
         }
40 40
 
41
-        if(empty($phoneNumber)) {
41
+        if (empty($phoneNumber)) {
42 42
             throw InvalidPhonenumber::configurationNotSet();
43 43
         }
44 44
 
Please login to merge, or discard this patch.