@@ -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); |
@@ -31,9 +31,9 @@ |
||
31 | 31 | */ |
32 | 32 | public function setupStubPath() |
33 | 33 | { |
34 | - Stub::setBasePath(__DIR__ . '/Commands/stubs'); |
|
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 | } |
@@ -24,7 +24,7 @@ |
||
24 | 24 | */ |
25 | 25 | public function setupStubPath() |
26 | 26 | { |
27 | - Stub::setBasePath(__DIR__ . '/Commands/stubs'); |
|
27 | + Stub::setBasePath(__DIR__.'/Commands/stubs'); |
|
28 | 28 | |
29 | 29 | if (app('modules')->config('stubs.enabled') === true) { |
30 | 30 | Stub::setBasePath(app('modules')->config('stubs.path')); |