public AccountProxy::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/AccountProxy.php, line 95
Class
- AccountProxy
- A proxied implementation of AccountInterface.
Namespace
Drupal\Core\Session
Code
1 2 3 | public function isAnonymous() { return $this ->getAccount()->isAnonymous(); } |
Please login to continue.