8000
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.
1 parent 68a12fa commit 37c665eCopy full SHA for 37c665e
src/Symfony/Component/Notifier/Bridge/LightSms/LightSmsTransport.php
@@ -120,7 +120,7 @@ protected function doSend(MessageInterface $message): SentMessage
120
);
121
122
if (Response::HTTP_OK !== $response->getStatusCode()) {
123
- throw new TransportException('Unable to send the SMS', $response);
+ throw new TransportException('Unable to send the SMS.', $response);
124
}
125
126
$content = $response->toArray(false);
@@ -148,7 +148,7 @@ protected function doSend(MessageInterface $message): SentMessage
148
return $sentMessage;
149
150
151
152
153
154
private function generateSignature(array $data, int $timestamp): string
0 commit comments