示例#1
0
文件: Course.php 项目: profcab/ilios
 /**
  * @param CohortInterface $cohort
  */
 public function addCohort(CohortInterface $cohort)
 {
     $this->cohorts->add($cohort);
 }
示例#2
0
 /**
  * @inheritdoc
  */
 public function removeCohort(CohortInterface $cohort)
 {
     if ($this->cohorts->contains($cohort)) {
         $this->cohorts->removeElement($cohort);
         $cohort->removeCourse($this);
     }
 }