You are here

public function PluralFormula::reset in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/locale/src/PluralFormula.php \Drupal\locale\PluralFormula::reset()

Resets the static formulae cache.

Return value

self The PluralFormula object.

Overrides PluralFormulaInterface::reset

File

core/modules/locale/src/PluralFormula.php, line 111
Contains \Drupal\locale\PluralFormula.

Class

PluralFormula
Manages the storage of plural formula per language in state.

Namespace

Drupal\locale

Code

public function reset() {
  $this->formulae = NULL;
  return $this;
}