function NullStorageExpirable::setIfNotExists

Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php \Drupal\Core\KeyValueStore\NullStorageExpirable::setIfNotExists()
  2. 10 core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php \Drupal\Core\KeyValueStore\NullStorageExpirable::setIfNotExists()
  3. 11.x core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php \Drupal\Core\KeyValueStore\NullStorageExpirable::setIfNotExists()

Saves a value for a given key if it does not exist yet.

Parameters

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

mixed $value: The data to store.

Return value

bool TRUE if the data was set, FALSE if it already existed.

Overrides KeyValueStoreInterface::setIfNotExists

File

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

Class

NullStorageExpirable
Defines a null key/value store implementation.

Namespace

Drupal\Core\KeyValueStore

Code

public function setIfNotExists($key, $value) {
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.