ManaPHP\Counter\Adapter\Redis::delete PHP Method

delete() public method

public delete ( string $type, string $id ) : void
$type string
$id string
return void
    public function delete($type, $id)
    {
        $this->redis->hDel($this->_prefix . $type, $id);
    }