@@ -21,7 +21,7 @@ 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"); |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | $providerAndDumperAggregator = (new ProviderAndDumperAggregator) |
| 30 | 30 | ->registerProvidersFromConfig(collect(config("geocoder.providers"))); |
| 31 | 31 | |
| 32 | - $this->app->singleton("geocoder", function ($app) use ($providerAndDumperAggregator) { |
|
| 32 | + $this->app->singleton("geocoder", function($app) use ($providerAndDumperAggregator) { |
|
| 33 | 33 | return $providerAndDumperAggregator; |
| 34 | 34 | }); |
| 35 | 35 | |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | |
| 46 | 46 | public function provides(): array |
| 47 | 47 | { |
| 48 | - return ["geocoder"]; |
|
| 48 | + return [ "geocoder" ]; |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | protected function configPath(string $path = ""): string |