delete() public method

Deletes a value with the specified id from store
public delete ( string $id )
$id string
Beispiel #1
0
 /**
  * Delete content
  *
  * @param string $key
  *
  * @void
  */
 public function delete($key)
 {
     $this->adapter->delete($this->_prefix . $key);
 }