You are here

public function AccountProxy::getEmail in Zircon Profile 8

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

Returns the email address of this account.

Return value

string The email address.

Overrides AccountInterface::getEmail

File

core/lib/Drupal/Core/Session/AccountProxy.php, line 142
Contains \Drupal\Core\Session\AccountProxy.

Class

AccountProxy
A proxied implementation of AccountInterface.

Namespace

Drupal\Core\Session

Code

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