Skip to content

Commit 71bbfd4

Browse files
order parameters regarding coding standarts
1 parent 2821c2a commit 71bbfd4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/QueryBuilder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,11 +496,11 @@ public function match(string $field, string $value): MatchQuery
496496
* }}}
497497
*
498498
* @param string $field The field to query by.
499-
* @param string|int|float|bool $value The term to find in field.
499+
* @param string|float|int|bool $value The term to find in field.
500500
* @return \Elastica\Query\Term
501501
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-term-query.html
502502
*/
503-
public function term(string $field, string|int|float|bool $value): Term
503+
public function term(string $field, string|float|int|bool $value): Term
504504
{
505505
return new Elastica\Query\Term([$field => $value]);
506506
}

0 commit comments

Comments
 (0)