Skip to content

Commit e330484

Browse files
committed
Fix CS
1 parent 96d9851 commit e330484

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Transport/SendmailTransport.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ protected function doSend(SentMessage $message): void
8787

8888
$command = $this->command;
8989

90-
if (!empty($recipients = $message->getEnvelope()->getRecipients())) {
90+
if ($recipients = $message->getEnvelope()->getRecipients()) {
9191
$command = str_replace(' -t', '', $command);
9292
}
9393

0 commit comments

Comments
 (0)