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