DeleteQuery::getClauseDeleteFrom PHP Method

getClauseDeleteFrom() protected method

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