You are here

public function CacheBackendWrapper::removeBin in Devel 8.3

Same name and namespace in other branches
  1. 8 webprofiler/src/Cache/CacheBackendWrapper.php \Drupal\webprofiler\Cache\CacheBackendWrapper::removeBin()
  2. 8.2 webprofiler/src/Cache/CacheBackendWrapper.php \Drupal\webprofiler\Cache\CacheBackendWrapper::removeBin()
  3. 4.x webprofiler/src/Cache/CacheBackendWrapper.php \Drupal\webprofiler\Cache\CacheBackendWrapper::removeBin()

Remove a cache bin.

Overrides CacheBackendInterface::removeBin

File

webprofiler/src/Cache/CacheBackendWrapper.php, line 172

Class

CacheBackendWrapper
Wraps an existing cache backend to track calls to the cache backend.

Namespace

Drupal\webprofiler\Cache

Code

public function removeBin() {
  return $this->cacheBackend
    ->removeBin();
}