@@ -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"); |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | public function register() |
31 | 31 | { |
32 | 32 | $this->app->alias("Geocoder", Geocoder::class); |
33 | - $this->app->singleton(ProviderAndDumperAggregator::class, function () { |
|
33 | + $this->app->singleton(ProviderAndDumperAggregator::class, function() { |
|
34 | 34 | return (new ProviderAndDumperAggregator) |
35 | 35 | ->registerProvidersFromConfig(collect(config("geocoder.providers"))); |
36 | 36 | }); |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | public function provides() : array |
41 | 41 | { |
42 | - return ["geocoder", ProviderAndDumperAggregator::class]; |
|
42 | + return [ "geocoder", ProviderAndDumperAggregator::class ]; |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | protected function configPath(string $path = "") : string |