From 9f54699da43923e8849ba959fc58a60ed123b1de Mon Sep 17 00:00:00 2001 From: rennokki Date: Fri, 18 Sep 2020 09:16:14 +0000 Subject: [PATCH] Apply fixes from StyleCI (#537) --- tests/ReplicationTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/ReplicationTest.php b/tests/ReplicationTest.php index d23d86d..b7dacba 100644 --- a/tests/ReplicationTest.php +++ b/tests/ReplicationTest.php @@ -55,7 +55,7 @@ class ReplicationTest extends TestCase $this->getPublishClient() ->assertCalledWithArgs('publish', [ $this->channelManager->getRedisKey('1234', 'public-channel'), - $message->getPayload() + $message->getPayload(), ]); } @@ -89,7 +89,7 @@ class ReplicationTest extends TestCase $this->getPublishClient() ->assertCalledWithArgs('publish', [ $this->channelManager->getRedisKey('1234', 'private-channel'), - $message->getPayload() + $message->getPayload(), ]); } @@ -133,7 +133,7 @@ class ReplicationTest extends TestCase $this->getPublishClient() ->assertCalledWithArgs('publish', [ $this->channelManager->getRedisKey('1234', 'presence-channel'), - $message->getPayload() + $message->getPayload(), ]); }