/** * @param InstructorGroupInterface $instructorGroup */ public function addInstructorGroup(InstructorGroupInterface $instructorGroup) { $this->instructorGroups->add($instructorGroup); }
/** * @param InstructorGroupInterface $instructorGroup */ public function addInstructorGroup(InstructorGroupInterface $instructorGroup) { if (!$this->instructorGroups->contains($instructorGroup)) { $this->instructorGroups->add($instructorGroup); $instructorGroup->addUser($this); } }