phprs\ezsql\rules\select\OrderByRule::orderByArgs PHP Method

orderByArgs() public method

orderByArgs(['column0', 'column1'=>Sql::$ORDER_BY_ASC]) => "ORDER BY column0,column1 ASC"
public orderByArgs ( array $args ) : OrderByRule
$args array
return OrderByRule
    public function orderByArgs($args)
    {
        $this->order->orderByArgs($this->context, $args);
        return $this;
    }