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.
2 parents 9d2a4c4 + 686ff39 commit 5f8a633Copy full SHA for 5f8a633
src/Message/Client.php
@@ -37,8 +37,8 @@ public function send($message)
37
$params = $message->getRequestData(false);
38
39
$request = new Request(
40
- $this->getClient()->getRestUrl() . '/sms/json'
41
- ,'POST',
+ $this->getClient()->getRestUrl() . '/sms/json',
+ 'POST',
42
'php://temp',
43
['content-type' => 'application/json']
44
);
@@ -89,8 +89,8 @@ public function sendShortcode($message) {
89
$params = $message->getRequestData();
90
91
92
- $this->getClient()->getRestUrl() . '/sc/us/'.$message->getType().'/json'
93
+ $this->getClient()->getRestUrl() . '/sc/us/'.$message->getType().'/json',
94
95
96
0 commit comments