Skip to content

Commit 8def4bd

Browse files
Benoit POLASZEKStrift
authored andcommitted
style: make linter happy
1 parent 873d11c commit 8def4bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ private function buildQueryString(array $queryParams = []): string
221221
if (\is_bool($value)) {
222222
$queryParams[$key] = $value ? 'true' : 'false';
223223
}
224-
if (\is_array($value) && \array_is_list($value)) {
224+
if (\is_array($value) && array_is_list($value)) {
225225
$queryParams[$key] = implode(',', $value);
226226
}
227227
}

0 commit comments

Comments
 (0)