You are here

public function NullStorageExpirable::setWithExpire in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php \Drupal\Core\KeyValueStore\NullStorageExpirable::setWithExpire()

Saves a value for a given key with a time to live.

Parameters

string $key: The key of the data to store.

mixed $value: The data to store.

int $expire: The time to live for items, in seconds.

Overrides KeyValueStoreExpirableInterface::setWithExpire

File

core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php, line 110

Class

NullStorageExpirable
Defines a null key/value store implementation.

Namespace

Drupal\Core\KeyValueStore

Code

public function setWithExpire($key, $value, $expire) {
}