Pheasant\Query\Query::andOrderBy PHP Method

andOrderBy() public method

Convenience method for orderBy, to be consistent with where and andWhere.
public andOrderBy ( $sql, $params = [] )
    public function andOrderBy($sql, $params = array())
    {
        $binder = new Binder();
        $this->_order[] = $binder->magicBind($sql, (array) $params);
        return $this;
    }