From fe7978924230b44223470e8a980894f4d43a2eb2 Mon Sep 17 00:00:00 2001 From: Steven Wade Date: Wed, 15 Mar 2017 15:29:04 -0400 Subject: [PATCH] Fix PHP 5.3 syntax error - again --- tests/UnassignConversationTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/UnassignConversationTest.php b/tests/UnassignConversationTest.php index 8fdfac8d..526949ab 100644 --- a/tests/UnassignConversationTest.php +++ b/tests/UnassignConversationTest.php @@ -26,10 +26,10 @@ public function testUnassign() private function getConversation() { - $conversation = new Conversation((object)[ + $conversation = new Conversation((object) array( 'threads' => array(), 'createdBy' => 12345 - ]); + )); $conversation->setMailbox(new MailboxRef); $conversation->setCreatedBy(new PersonRef);