Passed
Branch main (d8679f)
by Hope
10:37
created
Category
src/PayvesselServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     {
11 11
         $this->mergeConfigFrom(__DIR__.'/../config/payvessel.php', 'payvessel');
12 12
 
13
-        $this->app->singleton('payvessel', function () {
13
+        $this->app->singleton('payvessel', function() {
14 14
             return new Payvessel(config('payvessel'));
15 15
         });
16 16
     }
Please login to merge, or discard this patch.
src/Payvessel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,6 +21,6 @@
 block discarded – undo
21 21
 
22 22
     public function virtualAccounts(): VirtualAccount
23 23
     {
24
-        return new VirtualAccount($this->apiKey,$this->apiSecret, $this->baseUrl, $this->businessId);
24
+        return new VirtualAccount($this->apiKey, $this->apiSecret, $this->baseUrl, $this->businessId);
25 25
     }
26 26
 }
Please login to merge, or discard this patch.