| 1 | <?php |
||
| 2 | namespace Kir\MySQL\Builder\Expr; |
||
| 3 | |||
| 4 | interface OrderBySpecification { |
||
| 5 | /** |
||
| 6 | * Returns an array<int, array{string, string}>, where each value is a [db-expression, sort-direction] |
||
| 7 | * The sort-direction can be either ASC or DESC |
||
| 8 | * |
||
| 9 | * @return array<int, array{string, string&('ASC'|'DESC')}> |
||
|
0 ignored issues
–
show
Documentation
Bug
introduced
by
Loading history...
|
|||
| 10 | */ |
||
| 11 | public function getFields(): array; |
||
| 12 | } |
||
| 13 |