public function PhpBackend::invalidateAll in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::invalidateAll()
- 9 core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::invalidateAll()
File
- core/
lib/ Drupal/ Core/ Cache/ PhpBackend.php, line 215
Class
- PhpBackend
- Defines a PHP cache implementation.
Namespace
Drupal\Core\CacheCode
public function invalidateAll() {
foreach ($this
->storage()
->listAll() as $cidhash) {
$this
->invalidateByHash($cidhash);
}
}