Issues (87)

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

1
<?php
2
3
namespace Kir\MySQL\Builder\Expr;
4
5
interface OrderBySpecification {
6
	/**
7
	 * Returns an array<int, array{string, string}>, where each value is a [db-expression, sort-direction]
8
	 * The sort-direction can be either ASC or DESC
9
	 *
10
	 * @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...
11
	 */
12
	public function getFields(): array;
13
}
14