function AccountSwitcher::__construct

Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Session/AccountSwitcher.php \Drupal\Core\Session\AccountSwitcher::__construct()
  2. 10 core/lib/Drupal/Core/Session/AccountSwitcher.php \Drupal\Core\Session\AccountSwitcher::__construct()
  3. 11.x core/lib/Drupal/Core/Session/AccountSwitcher.php \Drupal\Core\Session\AccountSwitcher::__construct()

Constructs a new AccountSwitcher.

Parameters

\Drupal\Core\Session\AccountProxyInterface $current_user: The current user service.

\Drupal\Core\Session\WriteSafeSessionHandlerInterface $write_safe_handler: The write-safe session handler.

File

core/lib/Drupal/Core/Session/AccountSwitcher.php, line 50

Class

AccountSwitcher
An implementation of AccountSwitcherInterface.

Namespace

Drupal\Core\Session

Code

public function __construct(AccountProxyInterface $current_user, WriteSafeSessionHandlerInterface $write_safe_handler) {
    $this->currentUser = $current_user;
    $this->writeSafeHandler = $write_safe_handler;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.