We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10ef6a6 commit 00d296bCopy full SHA for 00d296b
src/Providers/GeocoderService.php
@@ -25,7 +25,8 @@ public function boot()
25
$this->publishes([$configPath => config_path('geocoder.php')], 'config');
26
$this->mergeConfigFrom($configPath, 'geocoder');
27
$this->app->singleton('geocoder', function () {
28
- return (new ProviderAndDumperAggregator)->registerProvidersFromConfig(collect(config('geocoder.providers')));
+ return (new ProviderAndDumperAggregator)
29
+ ->registerProvidersFromConfig(collect(config('geocoder.providers')));
30
});
31
}
32
0 commit comments