From d0fc23b33de6d944ca8ba8919c9e5cd7b19c9847 Mon Sep 17 00:00:00 2001 From: Colin O'Dell Date: Mon, 11 Feb 2013 11:21:00 -0500 Subject: [PATCH] Added return value to zRevRank Also included the link to the Redis documentation. --- src/Redis.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Redis.php b/src/Redis.php index f68d2af..72b466f 100644 --- a/src/Redis.php +++ b/src/Redis.php @@ -2339,8 +2339,10 @@ public function zRank( $key, $member ) {} /** * @see zRank() - * @param string $key - * @param string $member + * @param string $key + * @param string $member + * @return int the item's score + * @link http://redis.io/commands/zrevrank */ public function zRevRank( $key, $member ) {}