This commit is contained in:
Fabien Potencier 2020-08-20 07:29:43 +02:00
parent dd190565dc
commit 5a9180370e

View File

@ -88,7 +88,7 @@ final class OvhCloudTransport extends AbstractTransport
if (200 !== $response->getStatusCode()) {
$error = $response->toArray(false);
throw new TransportException(sprintf('Unable to send the SMS: "%s".', $error['message']), $response);
throw new TransportException(sprintf('Unable to send the SMS: %s.', $error['message']), $response);
}
}