public function NullFileCache::get in Plug 7
Gets data based on a filename.
Parameters
string $filepath: Path of the file that the cached data is based on.
Return value
mixed|null The data that was persisted with set() or NULL if there is no data or the file has been modified.
Overrides FileCacheInterface::get
File
- lib/
Drupal/ Component/ FileCache/ NullFileCache.php, line 35 - Contains \Drupal\Component\FileCache\NullFileCache.
Class
- NullFileCache
- Null implementation for the file cache.
Namespace
Drupal\Component\FileCacheCode
public function get($filepath) {
return NULL;
}