jobManager = $jobManager; $this->config = $config; } public function run() : void { if ($this->config->get('cronDisabled')) { $GLOBALS['log']->warning("Cron is not run because it's disabled with 'cronDisabled' param."); return; } $this->jobManager->process(); } }