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

Commit 19dd6cf

Browse files
Merge branch 'master' of github.com:Superbalist/php-pubsub-redis
2 parents c00300d + 18f4a48 commit 19dd6cf

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/RedisConsumerExample.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
'host' => 'redis',
88
'port' => 6379,
99
'database' => 0,
10-
'read_write_timeout' => 0
10+
'read_write_timeout' => 0,
1111
]);
1212

1313
$adapter = new \Superbalist\PubSub\Redis\RedisPubSubAdapter($client);

examples/RedisPublishExample.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
'host' => 'redis',
88
'port' => 6379,
99
'database' => 0,
10-
'read_write_timeout' => 0
10+
'read_write_timeout' => 0,
1111
]);
1212

1313
$adapter = new \Superbalist\PubSub\Redis\RedisPubSubAdapter($client);

phpunit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<?php
22

3-
include __DIR__ . '/vendor/autoload.php';
3+
include __DIR__ . '/vendor/autoload.php';

tests/RedisPubSubAdapterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function testPublish()
4343
$client->shouldReceive('publish')
4444
->withArgs([
4545
'channel_name',
46-
'a:1:{s:5:"hello";s:5:"world";}'
46+
'a:1:{s:5:"hello";s:5:"world";}',
4747
])
4848
->once();
4949

0 commit comments

Comments
 (0)