removeAllJobs() public method

Remove all job in the current crontab
public removeAllJobs ( ) : Crontab
return Crontab
コード例 #1
0
ファイル: Entries.php プロジェクト: int3rlop3r/phron
 /**
  * Deletes all cron jobs
  * 
  * @return Crontab
  */
 public function clear()
 {
     $this->crontab->removeAllJobs();
     return $this;
 }