From e52149bc29bd0b940820deac25dd89afc476178a Mon Sep 17 00:00:00 2001 From: Mohamed Said Date: Fri, 3 Jan 2020 19:02:25 +0200 Subject: [PATCH] make getConnection public --- src/Illuminate/Queue/RedisQueue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Queue/RedisQueue.php b/src/Illuminate/Queue/RedisQueue.php index 6898839a058..c5b38c1b9c6 100644 --- a/src/Illuminate/Queue/RedisQueue.php +++ b/src/Illuminate/Queue/RedisQueue.php @@ -293,7 +293,7 @@ public function getQueue($queue) * * @return \Illuminate\Redis\Connections\Connection */ - protected function getConnection() + public function getConnection() { return $this->redis->connection($this->connection); }