Skip to content

Commit 535de5b

Browse files
authored
Merge pull request #920 from jrfnl/feature/php-8.1-fix-call-to-http_build-query
2 parents a8eca3f + 3b14025 commit 535de5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tool/QueryBuilderTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ trait QueryBuilderTrait
2828
*/
2929
protected function buildQueryString(array $params)
3030
{
31-
return http_build_query($params, null, '&', \PHP_QUERY_RFC3986);
31+
return http_build_query($params, '', '&', \PHP_QUERY_RFC3986);
3232
}
3333
}

0 commit comments

Comments
 (0)