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

1
2
3
public function delete($key) {
  $this->deleteMultiple(array($key));
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.