public function TokenAuthUser::getOriginalId in Simple OAuth (OAuth2) & OpenID Connect 8.3
Same name and namespace in other branches
- 8.4 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::getOriginalId()
- 8 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::getOriginalId()
- 8.2 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::getOriginalId()
- 5.x src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::getOriginalId()
Gets the original ID.
Return value
int|string|null The original ID, or NULL if no ID was set or for entity types that do not support renames.
Overrides EntityInterface::getOriginalId
File
- src/
Authentication/ TokenAuthUser.php, line 454
Class
- TokenAuthUser
- The decorated user class with token information.
Namespace
Drupal\simple_oauth\AuthenticationCode
public function getOriginalId() {
return $this->subject
->getOriginalId();
}