Passed
Push — master ( e54dd2...8c743d )
by Eudald
01:38
created
src/GocardlessServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     public function boot()
31 31
     {
32 32
         $this->publishes([
33
-            __DIR__.'/config/gocardless.php' => config_path('gocardless.php'),
33
+            __DIR__ . '/config/gocardless.php' => config_path('gocardless.php'),
34 34
         ], 'config');
35 35
     }
36 36
 
@@ -61,11 +61,11 @@  discard block
 block discarded – undo
61 61
      */
62 62
     protected function registerGocardless()
63 63
     {
64
-        $this->app->singleton('gocardless', function ($app) {
64
+        $this->app->singleton('gocardless', function($app) {
65 65
             $config = $app['config']->get('gocardless');
66 66
             $token = isset($config['token']) ? $config['token'] : null;
67 67
             $environment = isset($config['environment']) ? $config['environment'] : null;
68
-            return new Client( array (
68
+            return new Client(array(
69 69
                 'access_token' => $token,
70 70
                 'environment' => $environment
71 71
             ));
Please login to merge, or discard this patch.