public function UsernameEventVariables::userIsAnonymous in Hook Event Dispatcher 8.2
Same name and namespace in other branches
- 3.x modules/preprocess_event_dispatcher/src/Variables/UsernameEventVariables.php \Drupal\preprocess_event_dispatcher\Variables\UsernameEventVariables::userIsAnonymous()
Whether the user is anonymous or not.
Return value
bool Is it?
File
- modules/
preprocess_event_dispatcher/ src/ Variables/ UsernameEventVariables.php, line 18
Class
- UsernameEventVariables
- Class UsernameEventVariables.
Namespace
Drupal\preprocess_event_dispatcher\VariablesCode
public function userIsAnonymous() : bool {
return $this
->getAccount()
->isAnonymous();
}