19 lines
323 B
PHP
19 lines
323 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace BeyondCode\LaravelWebSockets\Tests\Channels;
|
||
|
|
|
||
|
|
use BeyondCode\LaravelWebSockets\Tests\TestCase;
|
||
|
|
|
||
|
|
class PrivateChannelReplicationTest extends TestCase
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* {@inheritdoc}
|
||
|
|
*/
|
||
|
|
public function setUp(): void
|
||
|
|
{
|
||
|
|
parent::setUp();
|
||
|
|
|
||
|
|
$this->runOnlyOnRedisReplication();
|
||
|
|
}
|
||
|
|
}
|