NullFileCache::getMultiple

public NullFileCache::getMultiple(array $filepaths)

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

core/lib/Drupal/Component/FileCache/NullFileCache.php, line 37

Class

NullFileCache
Null implementation for the file cache.

Namespace

Drupal\Component\FileCache

Code

public function getMultiple(array $filepaths) {
  return [];
}
doc_Drupal
2016-10-29 09:32:07
Comments
Leave a Comment

Please login to continue.