@@ -26,7 +26,7 @@ |
||
26 | 26 | $this->mergeConfigFrom($configPath, 'geocoder'); |
27 | 27 | $this->app->singleton('geocoder', function () { |
28 | 28 | return (new ProviderAndDumperAggregator) |
29 | - ->registerProvidersFromConfig(collect(config('geocoder.providers'))); |
|
29 | + ->registerProvidersFromConfig(collect(config('geocoder.providers'))); |
|
30 | 30 | }); |
31 | 31 | } |
32 | 32 |
@@ -22,9 +22,9 @@ discard block |
||
22 | 22 | public function boot() |
23 | 23 | { |
24 | 24 | $configPath = __DIR__ . '/../../config/geocoder.php'; |
25 | - $this->publishes([$configPath => config_path('geocoder.php')], 'config'); |
|
25 | + $this->publishes([ $configPath => config_path('geocoder.php') ], 'config'); |
|
26 | 26 | $this->mergeConfigFrom($configPath, 'geocoder'); |
27 | - $this->app->singleton('geocoder', function () { |
|
27 | + $this->app->singleton('geocoder', function() { |
|
28 | 28 | return (new ProviderAndDumperAggregator) |
29 | 29 | ->registerProvidersFromConfig(collect(config('geocoder.providers'))); |
30 | 30 | }); |
@@ -37,6 +37,6 @@ discard block |
||
37 | 37 | |
38 | 38 | public function provides() : array |
39 | 39 | { |
40 | - return ['geocoder']; |
|
40 | + return [ 'geocoder' ]; |
|
41 | 41 | } |
42 | 42 | } |