You are here

public function NullStorageExpirable::has in Service Container 7.2

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

Returns whether a given key exists in the store.

Parameters

string $key: The key to check.

Return value

bool TRUE if the key exists, FALSE otherwise.

Overrides KeyValueStoreInterface::has

File

lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php, line 39
Contains \Drupal\Core\KeyValueStore\NullStorageExpirable.

Class

NullStorageExpirable
Defines a null key/value store implementation.

Namespace

Drupal\Core\KeyValueStore

Code

public function has($key) {
  return FALSE;
}