Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
24 | public function boot() |
||
25 | { |
||
26 | if (! $this->app->routesAreCached()) { |
||
27 | require __DIR__ . '/Manager/routes/web.php'; |
||
28 | } |
||
29 | |||
30 | // Register squanto viewfiles under squanto:: namespace |
||
31 | // allow to override them by making a view file under the resources/views/squanto location |
||
32 | $this->loadViewsFrom(realpath(__DIR__ . '/Manager/views'), 'squanto'); |
||
33 | |||
34 | } |
||
35 | |||
46 |