/** * @param InstructorGroupInterface $instructorGroup */ public function addInstructorGroup(InstructorGroupInterface $instructorGroup) { $this->instructorGroups->add($instructorGroup); }
/** * @param InstructorGroupInterface $instructorGroup */ public function removeInstructorGroup(InstructorGroupInterface $instructorGroup) { $this->instructorGroups->removeElement($instructorGroup); $instructorGroup->removeUser($this); }