예제 #1
0
파일: Program.php 프로젝트: profcab/ilios
 /**
  * @param CurriculumInventoryReportInterface $report
  */
 public function addCurriculumInventoryReport(CurriculumInventoryReportInterface $report)
 {
     $this->curriculumInventoryReports->add($report);
 }
예제 #2
0
 /**
  * {@inheritdoc}
  */
 public function removeCurriculumInventoryReport(CurriculumInventoryReportInterface $report)
 {
     if ($this->curriculumInventoryReports->contains($report)) {
         $this->curriculumInventoryReports->removeElement($report);
     }
 }