You are here

public function TokenAuthUser::getToken in Simple OAuth (OAuth2) & OpenID Connect 8.3

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

Get the token.

Return value

\Drupal\simple_oauth\Entity\Oauth2TokenInterface The provided OAuth2 token.

Overrides TokenAuthUserInterface::getToken

File

src/Authentication/TokenAuthUser.php, line 65

Class

TokenAuthUser
The decorated user class with token information.

Namespace

Drupal\simple_oauth\Authentication

Code

public function getToken() {
  return $this->token;
}