Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
fix: PHPCS white space
Browse files Browse the repository at this point in the history
  • Loading branch information
wadedvsa committed Mar 11, 2024
1 parent 3cf22df commit fdf5c98
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions test/Olcs/src/Controller/ConversationsControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -306,13 +306,11 @@ public function testReply(): void
$mockCommandHandler = m::mock(HandleCommand::class);
$mockCommandHandler->shouldReceive('__invoke')
->once()
->withArgs(
function ($command) {
$this->assertInstanceOf(CreateMessageCommand::class, $command);
->withArgs(function ($command) {
$this->assertInstanceOf(CreateMessageCommand::class, $command);

return true;
},
)
return true;
})
->andReturn($mockCommandReturn);

$this->sut->shouldReceive('plugin')
Expand Down

0 comments on commit fdf5c98

Please sign in to comment.