@@ -23,11 +23,11 @@ discard block |
||
| 23 | 23 | { |
| 24 | 24 | $configPath = __DIR__ . "/../../config/geocoder.php"; |
| 25 | 25 | $this->publishes( |
| 26 | - [$configPath => $this->configPath("geocoder.php")], |
|
| 26 | + [ $configPath => $this->configPath("geocoder.php") ], |
|
| 27 | 27 | "config" |
| 28 | 28 | ); |
| 29 | 29 | $this->mergeConfigFrom($configPath, "geocoder"); |
| 30 | - $this->app->singleton("geocoder", function () { |
|
| 30 | + $this->app->singleton("geocoder", function() { |
|
| 31 | 31 | return (new ProviderAndDumperAggregator) |
| 32 | 32 | ->registerProvidersFromConfig(collect(config("geocoder.providers"))); |
| 33 | 33 | }); |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | |
| 41 | 41 | public function provides() : array |
| 42 | 42 | { |
| 43 | - return ["geocoder"]; |
|
| 43 | + return [ "geocoder" ]; |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | protected function configPath(string $path = "") : string |