2020-08-14 12:35:36 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace BeyondCode\LaravelWebSockets\Tests\Channels;
|
|
|
|
|
|
|
|
|
|
use BeyondCode\LaravelWebSockets\Tests\TestCase;
|
|
|
|
|
|
|
|
|
|
class PrivateChannelReplicationTest extends TestCase
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* {@inheritdoc}
|
|
|
|
|
*/
|
|
|
|
|
public function setUp(): void
|
|
|
|
|
{
|
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
|
|
$this->runOnlyOnRedisReplication();
|
|
|
|
|
}
|
2020-08-14 17:26:55 +00:00
|
|
|
|
|
|
|
|
public function test_not_implemented()
|
|
|
|
|
{
|
|
|
|
|
$this->markTestIncomplete(
|
|
|
|
|
'Not yet implemented tests.'
|
|
|
|
|
);
|
|
|
|
|
}
|
2020-08-14 12:35:36 +00:00
|
|
|
}
|