コード例 #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);
 }