You are here

public function LanguageNegotiator::reset in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/language/src/LanguageNegotiator.php \Drupal\language\LanguageNegotiator::reset()

Resets the negotiated languages and the method instances.

Overrides LanguageNegotiatorInterface::reset

1 call to LanguageNegotiator::reset()
LanguageNegotiator::setCurrentUser in core/modules/language/src/LanguageNegotiator.php
Sets the current active user and resets all language types.

File

core/modules/language/src/LanguageNegotiator.php, line 107

Class

LanguageNegotiator
Class responsible for performing language negotiation.

Namespace

Drupal\language

Code

public function reset() {
  $this->negotiatedLanguages = [];
  $this->methods = [];
}