8000 Fixed code style · symfony/symfony@1788fb8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1788fb8

Browse files
committed
Fixed code style
1 parent 88e099a commit 1788fb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Mailer/Bridge/Sendgrid/Transport/SendgridApiTransport.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ protected function doSendApi(SentMessage $sentMessage, Email $email, Envelope $e
6262
try {
6363
$result = $response->toArray(false);
6464

65-
throw new HttpTransportException('Unable to send an email: ' . implode('; ', array_column($result['errors'], 'message')) . sprintf(' (code %d).', $statusCode), $response);
65+
throw new HttpTransportException('Unable to send an email: '.implode('; ', array_column($result['errors'], 'message')).sprintf(' (code %d).', $statusCode), $response);
6666
} catch (DecodingExceptionInterface $e) {
67-
throw new HttpTransportException('Unable to send an email: ' . $response->getContent(false) . sprintf(' (code %d).', $statusCode), $response);
67+
throw new HttpTransportException('Unable to send an email: '.$response->getContent(false).sprintf(' (code %d).', $statusCode), $response);
6868
}
6969
}
7070

0 commit comments

Comments
 (0)
0