예제 #1
0
파일: User.php 프로젝트: Okami-/ilios
 /**
  * @param InstructorGroupInterface $instructorGroup
  */
 public function addInstructorGroup(InstructorGroupInterface $instructorGroup)
 {
     $this->instructorGroups->add($instructorGroup);
 }
예제 #2
0
파일: User.php 프로젝트: stopfstedt/ilios
 /**
  * @param InstructorGroupInterface $instructorGroup
  */
 public function removeInstructorGroup(InstructorGroupInterface $instructorGroup)
 {
     $this->instructorGroups->removeElement($instructorGroup);
     $instructorGroup->removeUser($this);
 }