Granada\ORM::_build_order_by PHP Method

_build_order_by() protected method

Build ORDER BY
protected _build_order_by ( )
    protected function _build_order_by()
    {
        if (count($this->_order_by) === 0) {
            return '';
        }
        return "ORDER BY " . join(", ", $this->_order_by);
    }
ORM