DeleteQuery::buildQuery PHP Method

buildQuery() protected method

protected buildQuery ( ) : string
return string
    protected function buildQuery()
    {
        if ($this->statements['FROM']) {
            unset($this->clauses['DELETE FROM']);
        } else {
            unset($this->clauses['DELETE']);
        }
        return parent::buildQuery();
    }