From 29445fe4ebbd9108802e6992baa544a5b9ed802e Mon Sep 17 00:00:00 2001 From: chrisschrijver Date: Thu, 4 Jul 2013 23:19:20 +0200 Subject: [PATCH] Error was thrown because a ; was missing at the end of line 150 --- components/yii-resque/RResque.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/yii-resque/RResque.php b/components/yii-resque/RResque.php index 78c140e..c6171a6 100755 --- a/components/yii-resque/RResque.php +++ b/components/yii-resque/RResque.php @@ -147,6 +147,6 @@ public function redis() */ public function getQueues() { - return $this->redis()->zRange('delayed_queue_schedule', 0, -1) + return $this->redis()->zRange('delayed_queue_schedule', 0, -1); } }