Exemplo n.º 1
0
 /**
  * @param JobExecution $jobExecution
  *
  * @return JobInstance
  */
 public function removeJobExecution(JobExecution $jobExecution)
 {
     $this->jobExecutions->removeElement($jobExecution);
     return $this;
 }
Exemplo n.º 2
0
 /**
  * @param JobExecution $jobExecution
  *
  * @return JobInstance
  */
 public function removeJobExecution(JobExecution $jobExecution)
 {
     if ($this->jobExecutions->contains($jobExecution)) {
         $this->jobExecutions->removeElement($jobExecution);
     }
     return $this;
 }