StorageBase::delete

public StorageBase::delete($key)

Deletes an item from the key/value store.

Parameters

string $key: The item name to delete.

Overrides KeyValueStoreInterface::delete

File

core/lib/Drupal/Core/KeyValueStore/StorageBase.php, line 51

Class

StorageBase
Provides a base class for key/value storage implementations.

Namespace

Drupal\Core\KeyValueStore

Code

public function delete($key) {
  $this->deleteMultiple(array($key));
}
doc_Drupal
2016-10-29 09:44:34
Comments
Leave a Comment

Please login to continue.