Example #1
0
 /**
  * Remove a specified job in the current crontab
  *
  * @param Job $job
  *
  * @return Crontab
  */
 public function removeJob(Job $job)
 {
     unset($this->jobs[$job->getHash()]);
     return $this;
 }