/** * @param ReportInterface $report */ public function addReport(ReportInterface $report) { $this->reports->add($report); }
/** * @param ReportInterface $report */ public function addReport(ReportInterface $report) { if (!$this->reports->contains($report)) { $this->reports->add($report); } }