Completed
Push — master ( 00d296...8999f2 )
by Mike
04:36 queued 01:19
created
src/Providers/GeocoderService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,9 +22,9 @@  discard block
 block discarded – undo
22 22
     public function boot()
23 23
     {
24 24
         $configPath = __DIR__ . '/../../config/geocoder.php';
25
-        $this->publishes([$configPath => config_path('geocoder.php')], 'config');
25
+        $this->publishes([ $configPath => config_path('geocoder.php') ], 'config');
26 26
         $this->mergeConfigFrom($configPath, 'geocoder');
27
-        $this->app->singleton('geocoder', function () {
27
+        $this->app->singleton('geocoder', function() {
28 28
             return (new ProviderAndDumperAggregator)
29 29
                 ->registerProvidersFromConfig(collect(config('geocoder.providers')));
30 30
         });
@@ -37,6 +37,6 @@  discard block
 block discarded – undo
37 37
 
38 38
     public function provides() : array
39 39
     {
40
-        return ['geocoder'];
40
+        return [ 'geocoder' ];
41 41
     }
42 42
 }
Please login to merge, or discard this patch.