function CacheBackendWrapper::deleteMultiple

File

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

Class

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

Namespace

Drupal\webprofiler\Cache

Code

public function deleteMultiple(array $cids) {
    return $this->cacheBackend
        ->deleteMultiple($cids);
}