Skip to content

Commit

Permalink
Changed PUT to POST in Ebulksms.php post method
Browse files Browse the repository at this point in the history
  • Loading branch information
therealsmat committed Jan 12, 2018
1 parent 16e0432 commit bdcbb11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EbulkSMS.php
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ private function makeHttpRequest($method, $url, $body)
*/
private function post($url, $body)
{
return $this->makeHttpRequest('PUT', $url, $body);
return $this->makeHttpRequest('POST', $url, $body);
}

/**
Expand Down

0 comments on commit bdcbb11

Please sign in to comment.