Skip to content

Commit

Permalink
Fix PHP 5.3 syntax error - again
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenwadejr committed Mar 15, 2017
1 parent d5234eb commit fe79789
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/UnassignConversationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit fe79789

Please sign in to comment.