Pheasant\Query\Query::orderBy PHP Method

orderBy() public method

Adds an order by clause
public orderBy ( $sql, $params = [] )
    public function orderBy($sql, $params = array())
    {
        $binder = new Binder();
        $this->_order = array($binder->magicBind($sql, (array) $params));
        return $this;
    }