@@ -30,7 +30,7 @@ discard block |
||
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 |
||
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 | )); |