Passed
Pull Request — master (#15)
by Linh
02:19
created
src/Providers/GoogleDistanceServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,11 +30,11 @@
 block discarded – undo
30 30
      */
31 31
     public function register()
32 32
     {
33
-        $this->app->singleton('google-distance', function (Container $app) {
33
+        $this->app->singleton('google-distance', function(Container $app) {
34 34
             return new GoogleDistance($app['config']['google-distance.api_key'], $app['config']['google-distance.units']);
35 35
         });
36 36
 
37
-        $this->app->booting(function () {
37
+        $this->app->booting(function() {
38 38
             $loader = AliasLoader::getInstance();
39 39
             $loader->alias('GoogleDistance', \Pnlinh\GoogleDistance\Facades\GoogleDistance::class);
40 40
         });
Please login to merge, or discard this patch.