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 fafece6 commit 94094f9Copy full SHA for 94094f9
src/Helper/Merchant.php
@@ -53,8 +53,9 @@ public function buildQuery(array $args = []): string
53
);
54
55
$str = [];
56
+ /** @var string|int $val */
57
foreach ($out as $key => $val) {
- $str[] = rawurlencode($key) . '=' . rawurlencode($val);
58
+ $str[] = rawurlencode($key) . '=' . rawurlencode((string) $val);
59
}
60
61
return implode('&', $str);
0 commit comments