Conditions | 2 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2.0116 |
Changes | 0 |
1 | <?php |
||
31 | 177 | public function setupStubPath() |
|
32 | { |
||
33 | 177 | Stub::setBasePath(__DIR__ . '/Commands/stubs'); |
|
34 | |||
35 | 177 | $this->app->booted(function ($app) { |
|
36 | 177 | if ($app['modules']->config('stubs.enabled') === true) { |
|
37 | Stub::setBasePath($app['modules']->config('stubs.path')); |
||
38 | } |
||
39 | 177 | }); |
|
40 | 177 | } |
|
41 | |||
54 |