예제 #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);
     }
 }