2019-04-05 19:30:41 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace BeyondCode\LaravelWebSockets\Tests\HttpApi;
|
|
|
|
|
|
|
|
|
|
use BeyondCode\LaravelWebSockets\Tests\TestsReplication;
|
|
|
|
|
|
|
|
|
|
class FetchUsersReplicationTest extends FetchUsersTest
|
|
|
|
|
{
|
|
|
|
|
use TestsReplication;
|
|
|
|
|
|
2020-08-13 11:02:58 +00:00
|
|
|
public function setUp(): void
|
2019-04-05 19:30:41 +00:00
|
|
|
{
|
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
|
|
$this->setupReplication();
|
|
|
|
|
}
|
|
|
|
|
}
|