コード例 #1
0
ファイル: Course.php プロジェクト: profcab/ilios
 /**
  * @param CohortInterface $cohort
  */
 public function addCohort(CohortInterface $cohort)
 {
     $this->cohorts->add($cohort);
 }
コード例 #2
0
ファイル: Course.php プロジェクト: stopfstedt/ilios
 /**
  * @inheritdoc
  */
 public function removeCohort(CohortInterface $cohort)
 {
     if ($this->cohorts->contains($cohort)) {
         $this->cohorts->removeElement($cohort);
         $cohort->removeCourse($this);
     }
 }