From b220e0d7e48476310b542ac07d4e93548327f56d Mon Sep 17 00:00:00 2001 From: Dirk Cziesla Date: Thu, 27 May 2021 14:28:53 +0700 Subject: [PATCH] Fix "syntax error, unexpected ')" --- src/Transport/Office365MailTransport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Transport/Office365MailTransport.php b/src/Transport/Office365MailTransport.php index 33fab3b..0df455d 100644 --- a/src/Transport/Office365MailTransport.php +++ b/src/Transport/Office365MailTransport.php @@ -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() ); }