1 | <?php |
||
2 | |||
3 | namespace Kir\MySQL\Builder\Expr; |
||
4 | |||
5 | /** |
||
6 | * This interface is needed to allow new static in the deriving class |
||
7 | */ |
||
8 | interface DBOrderSpecInterface { |
||
9 | /** |
||
10 | * @param array<string, string> $sortSpecification Key = Alias, Value = DB-Expression |
||
11 | * @param array<string, string> $sortingInstruction Key = Alias, Value = Sortdirection ("ASC" | "DESC") |
||
12 | * @param array{max_sort_instructions?: positive-int} $options |
||
0 ignored issues
–
show
Documentation
Bug
introduced
by
![]() |
|||
13 | */ |
||
14 | public function __construct(array $sortSpecification, array $sortingInstruction, array $options = []); |
||
15 | } |
||
16 |