We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 873d11c commit 8def4bdCopy full SHA for 8def4bd
src/Http/Client.php
@@ -221,7 +221,7 @@ private function buildQueryString(array $queryParams = []): string
221
if (\is_bool($value)) {
222
$queryParams[$key] = $value ? 'true' : 'false';
223
}
224
- if (\is_array($value) && \array_is_list($value)) {
+ if (\is_array($value) && array_is_list($value)) {
225
$queryParams[$key] = implode(',', $value);
226
227
0 commit comments