Passed
Push — master ( cd7bd8...c1c084 )
by Kelvin
02:24
created
src/ChpterServiceProvider.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,13 +22,13 @@
 block discarded – undo
22 22
         if ($this->app->runningInConsole()) {
23 23
             //publish the config files
24 24
             $this->publishes([
25
-              __DIR__.'/../config/chpter.php' => config_path('chpter.php'),
26
-          ], 'chpter-config');
25
+                __DIR__.'/../config/chpter.php' => config_path('chpter.php'),
26
+            ], 'chpter-config');
27 27
 
28 28
             // Register commands
29 29
             $this->commands([
30 30
             InstallChpter::class,
31
-          ]);
31
+            ]);
32 32
         }
33 33
     }
34 34
 
Please login to merge, or discard this patch.
src/Chpter.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,9 +26,9 @@
 block discarded – undo
26 26
     public function __construct()
27 27
     {
28 28
         //Base URL for the API endpoints. This is basically the 'common' part of the API endpoints
29
-         $this->chpter_payment_url = config('chpter.payments_url'); 	
30
-         $this->token = config('chpter.chpter_token'); 
31
-         $this->domain =config('chpter.domain');
29
+            $this->chpter_payment_url = config('chpter.payments_url'); 	
30
+            $this->token = config('chpter.chpter_token'); 
31
+            $this->domain =config('chpter.domain');
32 32
     }
33 33
 
34 34
 
Please login to merge, or discard this patch.
src/Console/InstallChpter.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@
 block discarded – undo
16 16
         $this->info('Publishing Configuration...');
17 17
 
18 18
         $this->call('vendor:publish', [
19
-      '--provider' => "KiplingKelvin\ChpterLaravelSdk\ChpterServiceProvider",
20
-      '--tag' => "chpter-config"
19
+        '--provider' => "KiplingKelvin\ChpterLaravelSdk\ChpterServiceProvider",
20
+        '--tag' => "chpter-config"
21 21
     ]);
22 22
 
23 23
         $this->info('Installed Chpter for Laravel');
Please login to merge, or discard this patch.