Skip to content

Commit

Permalink
Merge pull request #61 from Xon/zsortfunctions
Browse files Browse the repository at this point in the history
Document some more sorted set functions
  • Loading branch information
colinmollenhour committed Apr 19, 2016
2 parents 4688305 + 88404e7 commit d7814bb
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Client.php
Expand Up @@ -136,10 +136,12 @@ public function __construct($message, $code = 0, $exception = NULL)
* @method int rPushX(string $key, mixed $value)
*
* Sorted Sets:
* @method array zrangebyscore(string $key, mixed $start, mixed $stop, array $args = null)
* @method array zrevrangebyscore(string $key, mixed $start, mixed $stop, array $args = null)
* @method array zrange(string $key, mixed $start, mixed $stop, array $args = null)
* @method array zrevrange(string $key, mixed $start, mixed $stop, array $args = null)
* @method int zCard(string $key)
* @method array zRangeByScore(string $key, mixed $start, mixed $stop, array $args = null)
* @method array zRevRangeByScore(string $key, mixed $start, mixed $stop, array $args = null)
* @method int zRemRangeByScore(string $key, mixed $start, mixed $stop)
* @method array zRange(string $key, mixed $start, mixed $stop, array $args = null)
* @method array zRevRange(string $key, mixed $start, mixed $stop, array $args = null)
* TODO
*
* Pub/Sub
Expand Down

0 comments on commit d7814bb

Please sign in to comment.