You are here

public function NullFileCache::getMultiple in Plug 7

Gets data based on filenames.

Parameters

string[] $filepaths: List of file paths used as cache identifiers.

Return value

array List of cached data keyed by the passed in file paths.

Overrides FileCacheInterface::getMultiple

File

lib/Drupal/Component/FileCache/NullFileCache.php, line 42
Contains \Drupal\Component\FileCache\NullFileCache.

Class

NullFileCache
Null implementation for the file cache.

Namespace

Drupal\Component\FileCache

Code

public function getMultiple(array $filepaths) {
  return [];
}