示例#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 addInstructorGroup(InstructorGroupInterface $instructorGroup)
 {
     if (!$this->instructorGroups->contains($instructorGroup)) {
         $this->instructorGroups->add($instructorGroup);
         $instructorGroup->addUser($this);
     }
 }