Skip to content

Commit

Permalink
Fix HTTP Keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
kduma authored May 6, 2021
1 parent 427809e commit f155859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HttpClient/GuzzleHttp7Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function put(string $path, array $body, array $query = [], array $headers

public function rawPost(string $path, $body, array $query = [], array $headers = [])
{
return $this->request('PUT', $path, $query, $headers, null, $body);
return $this->request('POST', $path, $query, $headers, null, $body);
}


Expand Down

0 comments on commit f155859

Please sign in to comment.