Habari\Query::orderby PHP Method

orderby() public method

Set the ORDER BY clause
public orderby ( string $value ) : Query
$value string The ORDER BY clause
return Query Returns $this for fluid interface
    public function orderby($value)
    {
        $this->orderby = empty($value) ? null : $value;
        return $this;
    }