BackendChain::removeBin

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();
  }
}
doc_Drupal
2016-10-29 08:45:21
Comments
Leave a Comment

Please login to continue.