Test Failed
Pull Request — master (#1)
by
unknown
05:13
created
src/AfricasTalkingServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,13 +18,13 @@
 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)) {
25 25
                     throw InvalidConfiguration::configurationNotSet();
26 26
                 }
27
-                $at =  new AfricasTalkingSDK(
27
+                $at = new AfricasTalkingSDK(
28 28
                     $userName,
29 29
                     $key
30 30
                 );
Please login to merge, or discard this patch.