Cron\Executor\Executor::execute PHP Method

execute() public method

public execute ( array $jobs ) : Cron\Report\ReportInterface
$jobs array
return Cron\Report\ReportInterface
    public function execute(array $jobs)
    {
        $report = new CronReport();
        $this->prepareSets($jobs);
        $this->startProcesses($report);
        return $report;
    }