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 2fe2614 commit 4b74924Copy full SHA for 4b74924
lib/internal/Magento/Framework/HTTP/Client/Curl.php
@@ -232,13 +232,14 @@ public function get($uri)
232
*
233
* @param string $uri
234
* @param array $params
235
+ * @param bool $json
236
* @return void
237
238
* @see \Magento\Framework\HTTP\Client#post($uri, $params)
239
*/
- public function post($uri, $params)
240
+ public function post($uri, $params, $json = false)
241
{
- $this->makeRequest("POST", $uri, $params);
242
+ $this->makeRequest("POST", $uri, $params, $json = false);
243
}
244
245
/**
0 commit comments