Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit 9f54699

Browse files
authored
Apply fixes from StyleCI (#537)
1 parent 7a651d7 commit 9f54699

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/ReplicationTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function test_events_get_replicated_across_connections_for_public_channel
5555
$this->getPublishClient()
5656
->assertCalledWithArgs('publish', [
5757
$this->channelManager->getRedisKey('1234', 'public-channel'),
58-
$message->getPayload()
58+
$message->getPayload(),
5959
]);
6060
}
6161

@@ -89,7 +89,7 @@ public function test_events_get_replicated_across_connections_for_private_channe
8989
$this->getPublishClient()
9090
->assertCalledWithArgs('publish', [
9191
$this->channelManager->getRedisKey('1234', 'private-channel'),
92-
$message->getPayload()
92+
$message->getPayload(),
9393
]);
9494
}
9595

@@ -133,7 +133,7 @@ public function test_events_get_replicated_across_connections_for_presence_chann
133133
$this->getPublishClient()
134134
->assertCalledWithArgs('publish', [
135135
$this->channelManager->getRedisKey('1234', 'presence-channel'),
136-
$message->getPayload()
136+
$message->getPayload(),
137137
]);
138138
}
139139

0 commit comments

Comments
 (0)