public function TokenAuthUser::getCreatedTime in Simple OAuth (OAuth2) & OpenID Connect 8
Same name and namespace in other branches
- 8.4 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::getCreatedTime()
- 8.2 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::getCreatedTime()
- 8.3 src/Authentication/TokenAuthUser.php \Drupal\simple_oauth\Authentication\TokenAuthUser::getCreatedTime()
- 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 724
Class
- TokenAuthUser
- Class TokenAuthUser.
Namespace
Drupal\simple_oauth\AuthenticationCode
public function getCreatedTime() {
return $this->subject
->getCreatedTime();
}