You are here

public function UserSession::isAnonymous in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Session/UserSession.php \Drupal\Core\Session\UserSession::isAnonymous()

Returns TRUE if the account is anonymous.

Return value

bool TRUE if the account is anonymous.

Overrides AccountInterface::isAnonymous

File

core/lib/Drupal/Core/Session/UserSession.php, line 124

Class

UserSession
An implementation of the user account interface for the global user.

Namespace

Drupal\Core\Session

Code

public function isAnonymous() {
  return $this->uid == 0;
}