2019-04-05 19:30:41 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace BeyondCode\LaravelWebSockets\Tests\HttpApi;
|
|
|
|
|
|
2020-08-14 06:43:47 +00:00
|
|
|
use BeyondCode\LaravelWebSockets\Tests\TestCase;
|
|
|
|
|
|
|
|
|
|
class FetchChannelsReplicationTest extends TestCase
|
2019-04-05 19:30:41 +00:00
|
|
|
{
|
2020-08-14 12:35:36 +00:00
|
|
|
/**
|
|
|
|
|
* {@inheritdoc}
|
|
|
|
|
*/
|
|
|
|
|
public function setUp(): void
|
|
|
|
|
{
|
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
|
|
$this->runOnlyOnRedisReplication();
|
|
|
|
|
}
|
2019-04-05 19:30:41 +00:00
|
|
|
}
|