Issues (83)

src/Builder/Expr/OrderBySpecification.php (1 issue)

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
The doc comment array<int, array{string, string&('ASC'|'DESC')}> at position 6 could not be parsed: Expected ':' at position 6, but found 'string'.
Loading history...
10
	 */
11
	public function getFields(): array;
12
}
13