Skip to content

Commit

Permalink
Merge pull request #2 from chrisschrijver/patch-1
Browse files Browse the repository at this point in the history
Error was thrown because a ; was missing at the end of line 150
  • Loading branch information
rolies106 committed Jul 5, 2013
2 parents 0e92717 + 29445fe commit de31014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/yii-resque/RResque.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

0 comments on commit de31014

Please sign in to comment.