KeyValueNullExpirableFactory.php in Drupal 9
Same filename and directory in other branches
Namespace
Drupal\Core\KeyValueStoreFile
core/lib/Drupal/Core/KeyValueStore/KeyValueNullExpirableFactory.phpView source
<?php
namespace Drupal\Core\KeyValueStore;
/**
* Defines the key/value store factory for the null backend.
*/
class KeyValueNullExpirableFactory implements KeyValueExpirableFactoryInterface {
/**
* {@inheritdoc}
*/
public function get($collection) {
return new NullStorageExpirable($collection);
}
}
Classes
Name | Description |
---|---|
KeyValueNullExpirableFactory | Defines the key/value store factory for the null backend. |