Apply fixes from StyleCI (#537)

This commit is contained in:
rennokki 2020-09-18 09:16:14 +00:00 committed by GitHub
parent 7a651d78c2
commit 9f54699da4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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(),
]);
}