Fixed typo

This commit is contained in:
Alex Renoki 2020-09-04 22:35:35 +03:00
parent 1e2672d9e0
commit 7a629cfcb0
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ abstract class TestCase extends BaseTestCase
// factory lazy instance on boot. // factory lazy instance on boot.
$this->app->singleton(ReplicationInterface::class, function () use ($replicationDriver) { $this->app->singleton(ReplicationInterface::class, function () use ($replicationDriver) {
$client = config( $client = config(
"websockets.replication.{$driver}.client", "websockets.replication.{$replicationDriver}.client",
\BeyondCode\LaravelWebSockets\PubSub\Drivers\LocalClient::class \BeyondCode\LaravelWebSockets\PubSub\Drivers\LocalClient::class
); );