You are here

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

Returns the creation time of the user as a UNIX timestamp.

Return value

int Timestamp of the creation date.

Overrides UserInterface::getCreatedTime

File

src/Authentication/TokenAuthUser.php, line 769

Class

TokenAuthUser
The decorated user class with token information.

Namespace

Drupal\simple_oauth\Authentication

Code

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