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