Skip to content

Commit

Permalink
Merge pull request #17 from EndOfSource/fix-syntax-error-unexpected
Browse files Browse the repository at this point in the history
Fix "syntax error, unexpected ')"
  • Loading branch information
motze92 authored Jun 1, 2021
2 parents 5089d5a + b220e0d commit 05e43e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Transport/Office365MailTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ protected function allContacts(Swift_Mime_SimpleMessage $message)
(array) $message->getTo(),
(array) $message->getCc(),
(array) $message->getBcc(),
(array) $message->getReplyTo(),
(array) $message->getReplyTo()
);
}

Expand Down

0 comments on commit 05e43e5

Please sign in to comment.