* LightSmsTransport.php - make fabbot happy

This commit is contained in:
Vasilij Dusko | CREATION 2021-04-06 13:22:50 +03:00
parent 68a12fa4f4
commit 37c665eb5c

View File

@ -120,7 +120,7 @@ final class LightSmsTransport extends AbstractTransport
); );
if (Response::HTTP_OK !== $response->getStatusCode()) { if (Response::HTTP_OK !== $response->getStatusCode()) {
throw new TransportException('Unable to send the SMS', $response); throw new TransportException('Unable to send the SMS.', $response);
} }
$content = $response->toArray(false); $content = $response->toArray(false);
@ -148,7 +148,7 @@ final class LightSmsTransport extends AbstractTransport
return $sentMessage; return $sentMessage;
} }
throw new TransportException('Unable to send the SMS', $response); throw new TransportException('Unable to send the SMS.', $response);
} }
private function generateSignature(array $data, int $timestamp): string private function generateSignature(array $data, int $timestamp): string