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

delete() public method

public delete ( string $type, string $id ) : void
$type string
$id string
return void
    public function delete($type, $id)
    {
        /**
         * @var \ManaPHP\Counter\Adapter\Db\Model $counter
         */
        $counter = new $this->_model();
        $counter::deleteAll(['hash' => md5($type . ':' . $id)]);
    }