Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | 164 | public function boot() |
|
18 | { |
||
19 | // Ensure installation is not in progress |
||
20 | 164 | if (!strpos(url()->current(), 'install')) { |
|
21 | 164 | DBConfigs::execute(); |
|
22 | 164 | $this->setupLdap(); |
|
23 | } |
||
24 | |||
25 | 164 | Setting::saving(function ($setting) { |
|
26 | 10 | Cache::forever($setting->key, $setting->value); |
|
27 | 164 | }); |
|
28 | 164 | } |
|
29 | |||
50 |