You are here

KeyValueListFactoryInterface.php in Key-value Extensions 8

File

src/KeyValueStore/KeyValueListFactoryInterface.php
View 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

Namesort descending Description
KeyValueListFactoryInterface Defines the expirable key/value store factory interface.