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