Completed
Push — master ( eabbf2...fd0c83 )
by Mike
21:14
created
src/Providers/GeocoderService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@  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");
28 28
         $geocoder = (new ProviderAndDumperAggregator)
29 29
             ->registerProvidersFromConfig(collect(config("geocoder.providers")));
30 30
         $this->app
31
-            ->singleton("geocoder", function () use ($geocoder) {
31
+            ->singleton("geocoder", function() use ($geocoder) {
32 32
                 return $geocoder;
33 33
             });
34 34
         $this->app
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     public function provides() : array
44 44
     {
45
-        return ["geocoder", ProviderAndDumperAggregator::class];
45
+        return [ "geocoder", ProviderAndDumperAggregator::class ];
46 46
     }
47 47
 
48 48
     protected function configPath(string $path = "") : string
Please login to merge, or discard this patch.