Granada\ORM::_add_order_by PHP Method

_add_order_by() protected method

Add an ORDER BY clause to the query
protected _add_order_by ( $column_name, string $ordering )
$ordering string
    protected function _add_order_by($column_name, $ordering)
    {
        $column_name = $this->_quote_identifier($column_name);
        $this->_order_by[] = "{$column_name} {$ordering}";
        return $this;
    }
ORM