diff --git a/src/Queue/AsyncRedisQueue.php b/src/Queue/AsyncRedisQueue.php index 9fd35cf..6f9874d 100644 --- a/src/Queue/AsyncRedisQueue.php +++ b/src/Queue/AsyncRedisQueue.php @@ -3,7 +3,6 @@ namespace BeyondCode\LaravelWebSockets\Queue; use BeyondCode\LaravelWebSockets\Contracts\ChannelManager; -use Illuminate\Contracts\Redis\Factory as Redis; use Illuminate\Queue\RedisQueue; class AsyncRedisQueue extends RedisQueue @@ -15,7 +14,7 @@ class AsyncRedisQueue extends RedisQueue */ public function getConnection() { - $channelManager = $this->container->bound(ChannelManager::Class) + $channelManager = $this->container->bound(ChannelManager::class) ? $this->container->make(ChannelManager::class) : null; diff --git a/tests/LocalQueueTest.php b/tests/LocalQueueTest.php index dcd8464..7e3ee7e 100644 --- a/tests/LocalQueueTest.php +++ b/tests/LocalQueueTest.php @@ -4,10 +4,10 @@ namespace BeyondCode\LaravelWebSockets\Test; use Illuminate\Container\Container; use Illuminate\Contracts\Redis\Factory; +use Illuminate\Queue\Jobs\RedisJob; use Illuminate\Queue\LuaScripts; use Illuminate\Queue\Queue; use Illuminate\Queue\RedisQueue; -use Illuminate\Queue\Jobs\RedisJob; use Illuminate\Support\Carbon; use Illuminate\Support\Str; use Mockery as m; diff --git a/tests/RedisQueueTest.php b/tests/RedisQueueTest.php index 3fbdc63..9578554 100644 --- a/tests/RedisQueueTest.php +++ b/tests/RedisQueueTest.php @@ -4,10 +4,10 @@ namespace BeyondCode\LaravelWebSockets\Test; use Illuminate\Container\Container; use Illuminate\Contracts\Redis\Factory; +use Illuminate\Queue\Jobs\RedisJob; use Illuminate\Queue\LuaScripts; use Illuminate\Queue\Queue; use Illuminate\Queue\RedisQueue; -use Illuminate\Queue\Jobs\RedisJob; use Illuminate\Support\Carbon; use Illuminate\Support\Str; use Mockery as m;