public function NullStorageExpirable::has in Service Container 7
Same name and namespace in other branches
- 7.2 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\KeyValueStoreCode
public function has($key) {
return FALSE;
}