public function StaticTranslation::reset

Resets translation cache.

Since most translation systems implement some form of caching, this provides a way to delete that cache.

Overrides TranslatorInterface::reset

File

drupal/core/lib/Drupal/Core/StringTranslation/Translator/StaticTranslation.php, line 53
Contains \Drupal\Core\StringTranslation\Translator\StaticTranslation.

Class

StaticTranslation
String translator with a static cache for translations.

Namespace

Drupal\Core\StringTranslation\Translator

Code

public function reset() {
  $this->translations = array();
}