From d5234eb18024a3ee00444126fdc6916613498428 Mon Sep 17 00:00:00 2001 From: Steven Wade Date: Wed, 15 Mar 2017 15:21:30 -0400 Subject: [PATCH] Fix PHP 5.3 syntax error --- tests/UnassignConversationTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/UnassignConversationTest.php b/tests/UnassignConversationTest.php index 624d39b3..8fdfac8d 100644 --- a/tests/UnassignConversationTest.php +++ b/tests/UnassignConversationTest.php @@ -27,7 +27,7 @@ public function testUnassign() private function getConversation() { $conversation = new Conversation((object)[ - 'threads' => [], + 'threads' => array(), 'createdBy' => 12345 ]); $conversation->setMailbox(new MailboxRef);