laravel-websockets/tests/Channels/ChannelReplicationTest.php

18 lines
309 B
PHP
Raw Normal View History

<?php
namespace BeyondCode\LaravelWebSockets\Tests\Channels;
use BeyondCode\LaravelWebSockets\Tests\TestsReplication;
class ChannelReplicationTest extends ChannelTest
{
use TestsReplication;
public function setUp() : void
{
parent::setUp();
$this->setupReplication();
}
}