You are here

public function LanguageManagerInterface::reset in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Language/LanguageManagerInterface.php \Drupal\Core\Language\LanguageManagerInterface::reset()

Resets the given language type or all types if none specified.

Parameters

string|null $type: (optional) The language type to reset as a string, e.g., LanguageInterface::TYPE_INTERFACE, or NULL to reset all language types. Defaults to NULL.

Return value

$this The language manager that has been reset.

1 method overrides LanguageManagerInterface::reset()
LanguageManager::reset in core/lib/Drupal/Core/Language/LanguageManager.php
Resets the given language type or all types if none specified.

File

core/lib/Drupal/Core/Language/LanguageManagerInterface.php, line 64

Class

LanguageManagerInterface
Common interface for the language manager service.

Namespace

Drupal\Core\Language

Code

public function reset($type = NULL);