mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2025-04-04 21:53:31 +03:00
Fixed an issue with PUT handler
This commit is contained in:
parent
854711656c
commit
436bf9ab43
1 changed files with 2 additions and 2 deletions
|
@ -64,8 +64,8 @@ class HttpBroker{
|
|||
return $this->responseHandler($response);
|
||||
}
|
||||
|
||||
public function putRequest($endpointUrl, $queryString){
|
||||
$request = $this->mgClient->put($endpointUrl, $queryString);
|
||||
public function putRequest($endpointUrl, $putData){
|
||||
$request = $this->mgClient->put($endpointUrl, array(), $putData);
|
||||
$response = $request->send();
|
||||
return $this->responseHandler($response);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue