function PhpBackend::removeBin

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

Overrides CacheBackendInterface::removeBin

File

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

Class

PhpBackend
Defines a PHP cache implementation.

Namespace

Drupal\Core\Cache

Code

public function removeBin() {
    $this->cache = [];
    $this->storage()
        ->deleteAll();
}

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