You are here

public function TokenAuthUser::updateLoadedRevisionId 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::updateLoadedRevisionId()
  2. 8.2 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::updateLoadedRevisionId()
  3. 8.3 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::updateLoadedRevisionId()
  4. 5.x src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::updateLoadedRevisionId()

Updates the loaded Revision ID with the revision ID.

This method should not be used, it could unintentionally cause the original revision ID property value to be lost.

@internal

Return value

$this

Overrides RevisionableInterface::updateLoadedRevisionId

File

src/Authentication/TokenAuthUser.php, line 881

Class

TokenAuthUser
The decorated user class with token information.

Namespace

Drupal\simple_oauth\Authentication

Code

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