DeleteQuery::getClauseDelete PHP Method

getClauseDelete() protected method

protected getClauseDelete ( ) : string
return string
    protected function getClauseDelete()
    {
        return 'DELETE' . ($this->ignore ? " IGNORE" : '') . ' ' . $this->statements['DELETE'];
    }