Passed
Push — main ( a3864e...a05549 )
by Hope
05:01
created
Category
src/ConfirmidentServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
             __DIR__.'/../config/confirmident.php', 'confirmident'
20 20
         );
21 21
 
22
-        $this->app->singleton('confirmident', function () {
22
+        $this->app->singleton('confirmident', function() {
23 23
             return new Confirmident();
24 24
         });
25 25
     }
Please login to merge, or discard this patch.
src/Confirmident.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
22 22
     {
23 23
         return Http::withHeaders([
24 24
             'Authorization' => 'Bearer '.$this->apiKey
25
-        ])->post($this->baseUrl . $endpoint, $data)->json();
25
+        ])->post($this->baseUrl.$endpoint, $data)->json();
26 26
     }
27 27
 }
Please login to merge, or discard this patch.