예제 #1
0
파일: Objective.php 프로젝트: profcab/ilios
 /**
  * @param ProgramYearInterface $programYear
  */
 public function addProgramYear(ProgramYearInterface $programYear)
 {
     $this->programYears->add($programYear);
 }
예제 #2
0
 /**
  * @inheritdoc
  */
 public function removeProgramYear(ProgramYearInterface $programYear)
 {
     if ($this->programYears->contains($programYear)) {
         $this->programYears->removeElement($programYear);
         $programYear->removeCompetency($this);
     }
 }