mirror of
https://github.com/predis/predis.git
synced 2026-08-24 21:19:36 +00:00
cfd6f030bc
* Added support for ZDIFF, added new WITHSCORE trait * Added trait to resolve numkeys argument * Added trait for unpacking keys array * Added static binding for Numkeys trait * Added ZDIFFSTORE command support * Changed access modifier type to more strict * Removed version annotation for inconsistency * Update ZDIFFSTORE.php Co-authored-by: Vladislav <vladislav@Admins-MacBook-Pro.local> Co-authored-by: Vladyslav Vildanov <vladyslavvildanov@Vladyslav-Vildanov-MacBook-Pro.local> Co-authored-by: Till Krüss <tillkruss@users.noreply.github.com>
26 lines
467 B
PHP
26 lines
467 B
PHP
<?php
|
|
|
|
namespace Predis\Command\Redis;
|
|
|
|
use Predis\Command\Command as RedisCommand;
|
|
|
|
/**
|
|
* @link https://redis.io/commands/zmscore/
|
|
*
|
|
* Returns the scores associated with the specified members
|
|
* in the sorted set stored at key.
|
|
*
|
|
* For every member that does not exist in the sorted set, a null value is returned.
|
|
*
|
|
*/
|
|
class ZMSCORE extends RedisCommand
|
|
{
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getId()
|
|
{
|
|
return 'ZMSCORE';
|
|
}
|
|
}
|