You are here

public function AccountProxy::id in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Session/AccountProxy.php \Drupal\Core\Session\AccountProxy::id()

Returns the user ID or 0 for anonymous.

Return value

int The user ID.

Overrides AccountInterface::id

File

core/lib/Drupal/Core/Session/AccountProxy.php, line 90

Class

AccountProxy
A proxied implementation of AccountInterface.

Namespace

Drupal\Core\Session

Code

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