@@ -195,7 +195,7 @@ |
||
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 | } |
@@ -33,7 +33,7 @@ |
||
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 | } |
@@ -52,7 +52,7 @@ |
||
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); |