Skip to content

Commit

Permalink
phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
bkuhl authored Apr 9, 2019
1 parent cf3dff3 commit 5ddda74
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Conversations/ConversationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -334,18 +334,18 @@ public function testExtractNewEntity()
'assignTo' => null,
], $conversation->extract());
}

/**
* See https://github.com/helpscout/helpscout-api-php/issues/111
* See https://github.com/helpscout/helpscout-api-php/issues/111.
*/
public function testSettingAssigneeAlsoSetsAssignToId()
{
$convo = new Conversation();

$assignee = new User();
$assignee->setId(41);
$convo->setAssignee($assignee);

$this->assertSame($user->getId(), $convo->getAssignTo());
}

Expand Down

0 comments on commit 5ddda74

Please sign in to comment.