public BackendChain::removeBin()
Remove a cache bin.
Overrides CacheBackendInterface::removeBin
File
- core/lib/Drupal/Core/Cache/BackendChain.php, line 216
Class
- BackendChain
- Defines a chained cache implementation for combining multiple cache backends.
Namespace
Drupal\Core\Cache
Code
public function removeBin() {
foreach ($this->backends as $backend) {
$backend->removeBin();
}
}
Please login to continue.