Remove a cache bin.
Overrides CacheBackendInterface::removeBin
File
- drupal/core/lib/Drupal/Core/Cache/BackendChain.php, line 229
- Definition of Drupal\Core\Cache\BackendChain.
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) {
$this
->removeBin();
}
}