Skip to content

Commit e763307

Browse files
committed
Sort types correctly
1 parent 71f7f5d commit e763307

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Builder/Stage.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ final class Stage
2222
*
2323
* @see https://www.mongodb.com/docs/manual/reference/operator/aggregation/match/
2424
*
25-
* @param QueryInterface|FieldQueryInterface|Type|stdClass|array<array-key, mixed>|bool|float|int|string|DateTimeInterface|null ...$queries The query predicates to match
25+
* @param DateTimeInterface|QueryInterface|FieldQueryInterface|Type|stdClass|array<array-key, mixed>|bool|float|int|string|null ...$queries The query predicates to match
2626
*/
27-
public static function match(QueryInterface|FieldQueryInterface|Type|stdClass|array|bool|float|int|string|DateTimeInterface|null ...$queries): MatchStage
27+
public static function match(DateTimeInterface|QueryInterface|FieldQueryInterface|Type|stdClass|array|bool|float|int|string|null ...$queries): MatchStage
2828
{
2929
// Override the generated method to allow variadic arguments
3030
return self::generatedMatch($queries);

0 commit comments

Comments
 (0)