You are here

public function State::resetCache in Service Container 7

Same name and namespace in other branches
  1. 7.2 lib/Drupal/Core/State/State.php \Drupal\Core\State\State::resetCache()

Resets the static cache.

This is mainly used in testing environments.

Overrides StateInterface::resetCache

File

lib/Drupal/Core/State/State.php, line 122
Contains \Drupal\Core\State\State.

Class

State
Provides the state system using a key value store.

Namespace

Drupal\Core\State

Code

public function resetCache() {
  $this->cache = array();
}