mirror of
https://github.com/predis/predis.git
synced 2026-08-24 17:39:36 +00:00
* Fix return type for ZCOUNT (#1546) * Fix return type for ZCOUNT ZCOUNT returns an `int`: > Integer reply: the number of members in the specified score range. * Update CHANGELOG.md --------- Co-authored-by: Till Krüss <tillkruss@users.noreply.github.com> * Added changelog entry --------- Co-authored-by: Tim Düsterhus <timwolla@googlemail.com> Co-authored-by: Till Krüss <tillkruss@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
421827625e
commit
87e08a3709
@@ -305,7 +305,7 @@ use Predis\Response\Status;
|
||||
* @method string xtrim(string $key, array|string $strategy, string $threshold, array $options = null)
|
||||
* @method int zadd(string $key, array $membersAndScoresDictionary)
|
||||
* @method int zcard(string $key)
|
||||
* @method string zcount(string $key, int|string $min, int|string $max)
|
||||
* @method int zcount(string $key, int|string $min, int|string $max)
|
||||
* @method array zdiff(array $keys, bool $withScores = false)
|
||||
* @method int zdiffstore(string $destination, array $keys)
|
||||
* @method string zincrby(string $key, int $increment, string $member)
|
||||
|
||||
Reference in New Issue
Block a user