예제 #1
0
 /**
  * @inheritdoc
  */
 public function removeAlert(AlertInterface $alert)
 {
     if ($this->alerts->contains($alert)) {
         $this->alerts->removeElement($alert);
         $alert->removeChangeType($this);
     }
 }
예제 #2
0
파일: User.php 프로젝트: stopfstedt/ilios
 /**
  * @param AlertInterface $alert
  */
 public function removeAlert(AlertInterface $alert)
 {
     $this->alerts->removeElement($alert);
     $alert->removeInstigator($this);
 }