Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

Commit

Permalink
Merge pull request #2544 from fauvel/issue-2544
Browse files Browse the repository at this point in the history
Fix deprecated post body array usage for Guzzle v6
  • Loading branch information
fauvel authored Feb 2, 2017
2 parents eda73b4 + 56d3dad commit fe1751e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ protected function _queueHit(array $parameterList) {
* @param array $parameterList
*/
protected function _submitRequest(array $parameterList) {
$this->_getGuzzleClient()->post('/collect', ['body' => $parameterList]);
$this->_getGuzzleClient()->post('/collect', ['form_params' => $parameterList]);
}

/**
Expand Down

0 comments on commit fe1751e

Please sign in to comment.