removeAllJobs() public method

Remove all job in the current crontab
public removeAllJobs ( ) : Crontab
return Crontab
Beispiel #1
0
 /**
  * Deletes all cron jobs
  * 
  * @return Crontab
  */
 public function clear()
 {
     $this->crontab->removeAllJobs();
     return $this;
 }