@@ -20,7 +20,7 @@ |
||
20 | 20 | // Merges default configuration |
21 | 21 | $this->mergeConfigFrom(__DIR__ . '/config/config.php', 'oauth-tokens-client'); |
22 | 22 | |
23 | - $this->app->bind('oauth-tokens-client.service', function ($app) { |
|
23 | + $this->app->bind('oauth-tokens-client.service', function($app) { |
|
24 | 24 | $oauthTokenConfig = $app->make('config')->get('oauth-tokens-client'); |
25 | 25 | |
26 | 26 | return new OAuthClient( |
@@ -34,7 +34,7 @@ |
||
34 | 34 | */ |
35 | 35 | public function register() |
36 | 36 | { |
37 | - $this->app['oauth-tokens-client.service'] = $this->app->share(function ($app) { |
|
37 | + $this->app['oauth-tokens-client.service'] = $this->app->share(function($app) { |
|
38 | 38 | return new OAuthClient( |
39 | 39 | new Client, |
40 | 40 | $app['cache.store'], |