function CacheBackendWrapper::invalidateMultiple

File

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

Class

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

Namespace

Drupal\webprofiler\Cache

Code

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