@@ -26,7 +26,7 @@ |
||
26 | 26 | { |
27 | 27 | $this->mergeConfigFrom(__DIR__.'/../../config/config.php', 'laravel-google-indexing'); |
28 | 28 | |
29 | - $this->app->bind('laravel_google_indexing', function () { |
|
29 | + $this->app->bind('laravel_google_indexing', function() { |
|
30 | 30 | return new LaravelGoogleIndexing(); |
31 | 31 | }); |
32 | 32 | } |
@@ -20,7 +20,7 @@ |
||
20 | 20 | |
21 | 21 | $this->googleClient->setAuthConfig(config('laravel-google-indexing.google.auth_config')); |
22 | 22 | |
23 | - foreach (config('laravel-google-indexing.google.scopes', []) as $scope) { |
|
23 | + foreach (config('laravel-google-indexing.google.scopes', [ ]) as $scope) { |
|
24 | 24 | $this->googleClient->addScope($scope); |
25 | 25 | } |
26 | 26 |