public function PhpBackend::removeBin in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Cache/PhpBackend.php \Drupal\Core\Cache\PhpBackend::removeBin()
Remove a cache bin.
Overrides CacheBackendInterface::removeBin
File
- core/
lib/ Drupal/ Core/ Cache/ PhpBackend.php, line 230
Class
- PhpBackend
- Defines a PHP cache implementation.
Namespace
Drupal\Core\CacheCode
public function removeBin() {
$this->cache = [];
$this
->storage()
->deleteAll();
}