ManaPHP\Counter::delete PHP Method

delete() public method

Deletes the key
public delete ( string $type, string $id ) : void
$type string
$id string
return void
    public function delete($type, $id)
    {
        $this->adapter->delete($this->_prefix . $type, $id);
    }