Use strict typing for zRemRangeByScore

This commit is contained in:
John Spaetzel 2021-07-20 12:58:25 -07:00 committed by Ivan Fedorov
parent 4686e6e240
commit c7888a63f0
2 changed files with 8 additions and 8 deletions

View File

@ -2938,9 +2938,9 @@ class Redis
/**
* Deletes the elements of the sorted set stored at the specified key which have scores in the range [start,end].
*
* @param string $key
* @param float|string $start double or "+inf" or "-inf" string
* @param float|string $end double or "+inf" or "-inf" string
* @param string $key
* @param string $start double or "+inf" or "-inf" as a string
* @param string $end double or "+inf" or "-inf" as a string
*
* @return int The number of values deleted from the sorted set
*
@ -2950,7 +2950,7 @@ class Redis
* $redis->zAdd('key', 0, 'val0');
* $redis->zAdd('key', 2, 'val2');
* $redis->zAdd('key', 10, 'val10');
* $redis->zRemRangeByScore('key', 0, 3); // 2
* $redis->zRemRangeByScore('key', '0', '3'); // 2
* </pre>
*/
public function zRemRangeByScore($key, $start, $end) {}

View File

@ -1285,9 +1285,9 @@ class RedisCluster
/**
* Deletes the elements of the sorted set stored at the specified key which have scores in the range [start,end].
*
* @param string $key
* @param float|string $start double or "+inf" or "-inf" string
* @param float|string $end double or "+inf" or "-inf" string
* @param string $key
* @param string $start double or "+inf" or "-inf" as a string
* @param string $end double or "+inf" or "-inf" as a string
*
* @return int The number of values deleted from the sorted set
* @link https://redis.io/commands/zremrangebyscore
@ -1296,7 +1296,7 @@ class RedisCluster
* $redisCluster->zAdd('key', 0, 'val0');
* $redisCluster->zAdd('key', 2, 'val2');
* $redisCluster->zAdd('key', 10, 'val10');
* $redisCluster->zRemRangeByScore('key', 0, 3); // 2
* $redisCluster->zRemRangeByScore('key', '0', '3'); // 2
* </pre>
*/
public function zRemRangeByScore($key, $start, $end) {}