Completed
Push — master ( 7881aa...9b899c )
by Mike
32:14 queued 08:12
created
src/Providers/GeocoderService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,11 +23,11 @@  discard block
 block discarded – undo
23 23
     {
24 24
         $configPath = __DIR__ . "/../../config/geocoder.php";
25 25
         $this->publishes(
26
-            [$configPath => $this->configPath("geocoder.php")],
26
+            [ $configPath => $this->configPath("geocoder.php") ],
27 27
             "config"
28 28
         );
29 29
         $this->mergeConfigFrom($configPath, "geocoder");
30
-        $this->app->singleton("geocoder", function () {
30
+        $this->app->singleton("geocoder", function() {
31 31
             return (new ProviderAndDumperAggregator)
32 32
                 ->registerProvidersFromConfig(collect(config("geocoder.providers")));
33 33
         });
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
     public function provides() : array
42 42
     {
43
-        return ["geocoder"];
43
+        return [ "geocoder" ];
44 44
     }
45 45
 
46 46
     protected function configPath(string $path = "") : string
Please login to merge, or discard this patch.