public function TokenAuthUser::getEmail in Simple OAuth (OAuth2) & OpenID Connect 8.4
Same name and namespace in other branches
- 8 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::getEmail()
- 8.2 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::getEmail()
- 8.3 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::getEmail()
- 5.x src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::getEmail()
Returns the email address of this account.
Return value
string|null The email address, or NULL if the account is anonymous or the user does not have an email address.
Overrides AccountInterface::getEmail
File
- src/
Authentication/ TokenAuthUser.php, line 174
Class
- TokenAuthUser
- The decorated user class with token information.
Namespace
Drupal\simple_oauth\AuthenticationCode
public function getEmail() {
return $this->subject
->getEmail();
}