phprs\ezsql\rules\basic\OrderByRule::orderByArgs PHP Метод

orderByArgs() публичный Метод

orderByArgs(['column0', 'column1'=>Sql::$ORDER_BY_ASC]) => "ORDER BY column0,column1 ASC"
public orderByArgs ( array $orders ) : LimitRule
$orders array
Результат LimitRule
    public function orderByArgs($orders)
    {
        $this->impl->orderByArgs($this->context, $orders);
        return new LimitRule($this->context);
    }