Completed
Push — master ( fd0c83...b0a0a1 )
by Mike
23:56
created
src/Providers/GeocoderService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.