Files
predis/src/Command/Redis/ZMSCORE.php
T
Vladyslav Vildanov cfd6f030bc Extend Sorted Set support by implementing ZDIFFSTORE command (#828)
* 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>
2022-11-30 13:23:08 -08:00

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';
}
}