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 affde4f commit 360d7dbCopy full SHA for 360d7db
templates/cli/src/Client.php.twig
@@ -200,6 +200,13 @@ class Client
200
$responseType = '';
201
$responseBody = '';
202
203
+ $params = array_map(function ($param) {
204
+ if (is_string($param)) {
205
+ $param = \urldecode($param);
206
+ }
207
+ return $param;
208
+ }, $params);
209
+
210
switch ($headers['content-type']) {
211
case 'application/json':
212
$query = json_encode($params);
0 commit comments