You are here

KeyValueSortedSetFactoryInterface.php in Key-value Extensions 8

File

src/KeyValueStore/KeyValueSortedSetFactoryInterface.php
View source
<?php

namespace Drupal\key_value\KeyValueStore;

interface KeyValueSortedSetFactoryInterface {

  /**
   * @param string $collection
   *
   * @return \Drupal\key_value\KeyValueStore\KeyValueStoreSortedSetInterface
   */
  public function get($collection);

}

Interfaces