コード例 #1
0
ファイル: User.php プロジェクト: Okami-/ilios
 /**
  * @param ReportInterface $report
  */
 public function addReport(ReportInterface $report)
 {
     $this->reports->add($report);
 }
コード例 #2
0
ファイル: User.php プロジェクト: stopfstedt/ilios
 /**
  * @param ReportInterface $report
  */
 public function addReport(ReportInterface $report)
 {
     if (!$this->reports->contains($report)) {
         $this->reports->add($report);
     }
 }