Issues (83)

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

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
The doc comment array{max_sort_instructions?: positive-int} at position 4 could not be parsed: Unknown type name 'positive-int' at position 4 in array{max_sort_instructions?: positive-int}.
Loading history...
13
	 */
14
	public function __construct(array $sortSpecification, array $sortingInstruction, array $options = []);
15
}
16