function KeyValueNullExpirableFactory::get
Constructs a new expirable key/value store for a given collection name.
Parameters
string $collection: The name of the collection holding key and value pairs.
Return value
\Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface An expirable key/value store implementation for the given $collection.
Overrides KeyValueExpirableFactoryInterface::get
File
- 
              core/lib/ Drupal/ Core/ KeyValueStore/ KeyValueNullExpirableFactory.php, line 13 
Class
- KeyValueNullExpirableFactory
- Defines the key/value store factory for the null backend.
Namespace
Drupal\Core\KeyValueStoreCode
public function get($collection) {
  return new NullStorageExpirable($collection);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
