function PhpBackend::invalidateAll

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::invalidateAll()
  2. 10 core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::invalidateAll()
  3. 11.x core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::invalidateAll()

Overrides CacheBackendInterface::invalidateAll

File

core/lib/Drupal/Core/Cache/PhpBackend.php, line 215

Class

PhpBackend
Defines a PHP cache implementation.

Namespace

Drupal\Core\Cache

Code

public function invalidateAll() {
    foreach ($this->storage()
        ->listAll() as $cidhash) {
        $this->invalidatebyHash($cidhash);
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.