You are here

public function TokenAuthUser::removeRole in Simple OAuth (OAuth2) & OpenID Connect 5.x

Same name and namespace in other branches
  1. 8.4 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::removeRole()
  2. 8 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::removeRole()
  3. 8.2 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::removeRole()
  4. 8.3 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::removeRole()

Remove a role from a user.

Parameters

string $rid: The role ID to remove.

Overrides UserInterface::removeRole

File

src/Authentication/TokenAuthUser.php, line 736

Class

TokenAuthUser
The decorated user class with token information.

Namespace

Drupal\simple_oauth\Authentication

Code

public function removeRole($rid) {
  $this->subject
    ->removeRole($rid);
}