Doctrine\OrientDB\Query\Command\Select::orderBy PHP Method

orderBy() public method

Orders the query.
public orderBy ( array $order, boolean $append = true, boolean $first = false )
$order array
$append boolean
$first boolean
    public function orderBy($order, $append = true, $first = false)
    {
        $this->setToken('OrderBy', $order, $append, $first);
        return $this;
    }