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 3f53e3f commit c10fe93Copy full SHA for c10fe93
HttpClientTrait.php
@@ -629,7 +629,6 @@ private static function mergeQueryString(?string $queryString, array $queryArray
629
'%28' => '(',
630
'%29' => ')',
631
'%2A' => '*',
632
- '%2C' => ',',
633
'%2F' => '/',
634
'%3A' => ':',
635
'%3B' => ';',
Tests/HttpClientTraitTest.php
@@ -157,7 +157,7 @@ public static function provideParseUrl(): iterable
157
yield [['http:', null, null, null, null], 'http:'];
158
yield [['http:', null, 'bar', null, null], 'http:bar'];
159
yield [[null, null, 'bar', '?a=1&c=c', null], 'bar?a=a&b=b', ['b' => null, 'c' => 'c', 'a' => 1]];
160
- yield [[null, null, 'bar', '?a=b+c&b=b-._~!$%26/%27()[]*%2B,;%3D:@%25\\^`{|}', null], 'bar?a=b+c', ['b' => 'b-._~!$&/\'()[]*+,;=:@%\\^`{|}']];
+ yield [[null, null, 'bar', '?a=b+c&b=b-._~!$%26/%27()[]*%2B%2C;%3D:@%25\\^`{|}', null], 'bar?a=b+c', ['b' => 'b-._~!$&/\'()[]*+,;=:@%\\^`{|}']];
161
yield [[null, null, 'bar', '?a=b%2B%20c', null], 'bar?a=b+c', ['a' => 'b+ c']];
162
yield [[null, null, 'bar', '?a[b]=c', null], 'bar', ['a' => ['b' => 'c']]];
163
yield [[null, null, 'bar', '?a[b[c]=d', null], 'bar?a[b[c]=d', []];
0 commit comments