コード例 #1
0
ファイル: AlertChangeType.php プロジェクト: stopfstedt/ilios
 /**
  * @inheritdoc
  */
 public function addAlert(AlertInterface $alert)
 {
     if (!$this->alerts->contains($alert)) {
         $this->alerts->add($alert);
         $alert->addChangeType($this);
     }
 }
コード例 #2
0
ファイル: School.php プロジェクト: profcab/ilios
 /**
  * @param AlertInterface $alert
  */
 public function addAlert(AlertInterface $alert)
 {
     $this->alerts->add($alert);
 }
コード例 #3
0
ファイル: School.php プロジェクト: stopfstedt/ilios
 /**
  * @inheritdoc
  */
 public function addAlert(AlertInterface $alert)
 {
     if (!$this->alerts->contains($alert)) {
         $this->alerts->add($alert);
         $alert->addRecipient($this);
     }
 }
コード例 #4
0
ファイル: User.php プロジェクト: stopfstedt/ilios
 /**
  * @param AlertInterface $alert
  */
 public function addAlert(AlertInterface $alert)
 {
     if (!$this->alerts->contains($alert)) {
         $this->alerts->add($alert);
         $alert->addInstigator($this);
     }
 }