KeyValueListFactoryInterface.php in Key-value Extensions 8
Namespace
Drupal\key_value\KeyValueStoreFile
src/KeyValueStore/KeyValueListFactoryInterface.phpView source
<?php
namespace Drupal\key_value\KeyValueStore;
/**
* Defines the expirable key/value store factory interface.
*/
interface KeyValueListFactoryInterface {
/**
* @param string $collection
*
* @return \Drupal\key_value\KeyValueStore\KeyValueStoreListInterface
*/
public function get($collection);
}
Interfaces
Name | Description |
---|---|
KeyValueListFactoryInterface | Defines the expirable key/value store factory interface. |