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