public function NullFileCache::__construct in Service Container 7
Same name and namespace in other branches
- 7.2 lib/Drupal/Component/FileCache/NullFileCache.php \Drupal\Component\FileCache\NullFileCache::__construct()
Constructs a FileCache object.
Parameters
string $prefix: A prefix that is used as a prefix, should be set to a secure, unique key to prevent cache pollution by a third party.
string $collection: A collection identifier to ensure that the same files could be cached for different purposes without clashing.
string|null $cache_backend_class: (optional) The class that should be used as cache backend.
array $cache_backend_configuration: (optional) The configuration for the backend class.
File
- lib/
Drupal/ Component/ FileCache/ NullFileCache.php, line 29 - Contains \Drupal\Component\FileCache\NullFileCache.
Class
- NullFileCache
- Null implementation for the file cache.
Namespace
Drupal\Component\FileCacheCode
public function __construct($prefix, $collection, $cache_backend_class = NULL, array $cache_backend_configuration = array()) {
}