Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | public function isProperlyConfigured() { |
||
34 | 3 | $cronMode = $this->settings->getAppValue( |
|
35 | 3 | 'core', 'backgroundjobs_mode' |
|
36 | ); |
||
37 | 3 | $cronOff = !$this->config->getUseCronUpdates(); |
|
38 | 3 | ||
39 | 3 | // check for cron modes which may lead to problems |
|
40 | 3 | return $cronMode === 'cron' || $cronOff; |
|
41 | 3 | } |
|
42 | 3 | ||
57 | } |