config = $config; $this->reportModulesInfo = $reportModulesInfo; $this->reportCounts = $reportCounts; $this->reportNewRelicCron = $reportNewRelicCron; } /** * The method run by the cron that fires all required events. * * @return \Magento\NewRelicReporting\Model\Cron */ public function runCron() { if ($this->config->isCronEnabled()) { $this->reportNewRelicCron->report(); $this->reportModulesInfo->report(); $this->reportCounts->report(); } return $this; } }