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