19 declare(strict_types=1);
32 $order =
$f->order(
'subject', Order::ASC);
33 $this->assertInstanceOf(Order::class, $order);
43 [
'subject' => Order::ASC],
53 $order = $order->
append(
'sub2', Order::DESC);
56 'subject' => Order::ASC,
70 'SORT BY subject ASC',
86 'Sorting subject ASC, sub2 DESC,',
101 $this->expectException(TypeError::class);
102 $order = $order->
append(
'sub3', -1);
110 $this->expectException(InvalidArgumentException::class);
111 $order = $order->
append(
'subject', Order::ASC);
join($init, callable $fn)
testJoinMore(Order $order)
testAppend
testValues(Order $order)
testFactory
Both the subject and the direction need to be specified when expressing an order. ...
testJoinOne(Order $order)
testFactory
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
append(string $subject, string $direction)
testInvalidSubject(Order $order)
testFactory
testInvalidDirection(Order $order)
testFactory
testAppend(Order $order)
testFactory