Completed
Pull Request — master (#272)
by
unknown
02:55
created
src/Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -195,7 +195,7 @@
 block discarded – undo
195 195
             $file = 'module.json';
196 196
         }
197 197
 
198
-        return array_get($this->moduleJson, $file, function () use ($file) {
198
+        return array_get($this->moduleJson, $file, function() use ($file) {
199 199
             return $this->moduleJson[$file] = new Json($this->getPath().'/'.$file, $this->app['files']);
200 200
         });
201 201
     }
Please login to merge, or discard this patch.
src/LaravelModulesServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     {
34 34
         Stub::setBasePath(__DIR__.'/Commands/stubs');
35 35
 
36
-        $this->app->booted(function ($app) {
36
+        $this->app->booted(function($app) {
37 37
             if ($app['modules']->config('stubs.enabled') === true) {
38 38
                 Stub::setBasePath($app['modules']->config('stubs.path'));
39 39
             }
Please login to merge, or discard this patch.
src/ModulesServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
      */
53 53
     protected function registerServices()
54 54
     {
55
-        $this->app->singleton('modules', function ($app) {
55
+        $this->app->singleton('modules', function($app) {
56 56
             $path = $app['config']->get('modules.paths.modules');
57 57
 
58 58
             return new Repository($app, $path);
Please login to merge, or discard this patch.