You are here

public function MemoryBackend::reset in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Cache/MemoryBackend.php \Drupal\Core\Cache\MemoryBackend::reset()
  2. 10 core/lib/Drupal/Core/Cache/MemoryBackend.php \Drupal\Core\Cache\MemoryBackend::reset()

Reset statically cached variables.

This is only used by tests.

File

core/lib/Drupal/Core/Cache/MemoryBackend.php, line 219

Class

MemoryBackend
Defines a memory cache implementation.

Namespace

Drupal\Core\Cache

Code

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