function CacheBackendWrapper::deleteAll

File

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

Class

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

Namespace

Drupal\webprofiler\Cache

Code

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