function State::delete

Deletes an item.

Parameters

string $key: The item name to delete.

Overrides StateInterface::delete

File

core/lib/Drupal/Core/State/State.php, line 100

Class

State
Provides the state system using a key value store.

Namespace

Drupal\Core\State

Code

public function delete($key) {
  $this->deleteMultiple([
    $key,
  ]);
}

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