return $this;
}
/**
* Returns an array of Enlight_Components_Cron_Job from crontab
*
* @return Enlight_Components_Cron_Job[]
*/
public function getAllJobs()
{
return $this->adapter->getAllJobs();
}
/**
* Receives a single Cron job defined by its id from crontab
*
* @param int $id
*
* @return Enlight_Components_Cron_Job|null
*/
public function getJobById($id)
{