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 eaf9c7d commit dd05fe2Copy full SHA for dd05fe2
src/Curl/Rest.php
@@ -249,9 +249,11 @@ public function send(string $method, string $path)
249
$data = json_encode($data);
250
break;
251
case CurlHandler::ENCODE_QUERY:
252
- default:
253
$data = http_build_query($data);
254
+ case CurlHandler::ENCODE_RAW:
255
+ default:
256
+ break;
257
}
258
//it's a get or delete
259
} else {
0 commit comments