Skip to content

Commit 08ae89e

Browse files
committed
change banner image
1 parent bdfdcab commit 08ae89e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

redisphp.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1914,7 +1914,9 @@ public function zRevRange($key, $start, $end, $withscore = false) {}
19141914
* @param string $key
19151915
* @param int $start
19161916
* @param int $end
1917-
* @param array $options Two options are available: withscores => TRUE, and limit => array($offset, $count)
1917+
* @param array $options Two options are available:
1918+
* - withscores => TRUE,
1919+
* - and limit => array($offset, $count)
19181920
* @return array Array containing the values in specified range.
19191921
* @link http://redis.io/commands/zrangebyscore
19201922
* @example
@@ -1929,7 +1931,7 @@ public function zRevRange($key, $start, $end, $withscore = false) {}
19291931
* $redis->zRangeByScore('key', 0, 3, array('withscores' => TRUE, 'limit' => array(1, 1)); // array('val2' => 2)
19301932
* </pre>
19311933
*/
1932-
public function zRangeByScore($key, $start, $end, array $options) {}
1934+
public function zRangeByScore($key, $start, $end, array $options = array()) {}
19331935

19341936
/**
19351937
* @see zRangeByScore()

redisphp.png

-41.1 KB
Loading

0 commit comments

Comments
 (0)