public function CacheBackendWrapper::removeBin in Devel 8
Same name and namespace in other branches
- 8.3 webprofiler/src/Cache/CacheBackendWrapper.php \Drupal\webprofiler\Cache\CacheBackendWrapper::removeBin()
- 8.2 webprofiler/src/Cache/CacheBackendWrapper.php \Drupal\webprofiler\Cache\CacheBackendWrapper::removeBin()
- 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\CacheCode
public function removeBin() {
return $this->cacheBackend
->removeBin();
}