Completed
Push — master ( 9b899c...eabbf2 )
by Mike
15s
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");
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
         $providerAndDumperAggregator = (new ProviderAndDumperAggregator)
30 30
             ->registerProvidersFromConfig(collect(config("geocoder.providers")));
31 31
 
32
-        $this->app->singleton("geocoder", function ($app) use ($providerAndDumperAggregator) {
32
+        $this->app->singleton("geocoder", function($app) use ($providerAndDumperAggregator) {
33 33
             return $providerAndDumperAggregator;
34 34
         });
35 35
 
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 
46 46
     public function provides(): array
47 47
     {
48
-        return ["geocoder"];
48
+        return [ "geocoder" ];
49 49
     }
50 50
 
51 51
     protected function configPath(string $path = ""): string
Please login to merge, or discard this patch.