Skip to content

Commit

Permalink
v3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fenric committed Oct 30, 2024
1 parent fa195a7 commit 62fa8ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Request/UrlEncodedRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ private static function createBody($data, int $encodingType): StreamInterface
return $data;
}

$encodedData = http_build_query($data, '', null, $encodingType);
$encodedData = http_build_query($data, '', '', $encodingType);

$stream = new PhpTempStream('r+b');
$stream->write($encodedData);
Expand Down

0 comments on commit 62fa8ba

Please sign in to comment.