You are here

public function TokenAuthUser::setUsername in Simple OAuth (OAuth2) & OpenID Connect 8.4

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

Sets the username of this account.

Parameters

string $username: The new user name.

Return value

$this The called user entity.

Overrides UserInterface::setUsername

File

src/Authentication/TokenAuthUser.php, line 741

Class

TokenAuthUser
The decorated user class with token information.

Namespace

Drupal\simple_oauth\Authentication

Code

public function setUsername($username) {
  return $this->subject
    ->setUsername($username);
}