コード例 #1
0
ファイル: User.php プロジェクト: Evyy/cffs-api
 /**
  * Add Role for User
  *
  * @param Role $role
  * @return void
  */
 public function grantRole(Role $role)
 {
     $role->grantRoleToUser($this);
     $this->roles[] = $role;
     $this->record(new RoleWasGranted($this));
 }