コード例 #1
0
ファイル: AlertChangeType.php プロジェクト: stopfstedt/ilios
 /**
  * @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);
 }