You are here

public function LanguageNegotiationMethodBase::setCurrentUser in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/language/src/LanguageNegotiationMethodBase.php \Drupal\language\LanguageNegotiationMethodBase::setCurrentUser()

Injects the current user.

Parameters

\Drupal\Core\Session\AccountInterface $current_user: The current active user.

Overrides LanguageNegotiationMethodInterface::setCurrentUser

File

core/modules/language/src/LanguageNegotiationMethodBase.php, line 52

Class

LanguageNegotiationMethodBase
Base class for language negotiation methods.

Namespace

Drupal\language

Code

public function setCurrentUser(AccountInterface $current_user) {
  $this->currentUser = $current_user;
}