diff --git a/lib/Predis.php b/lib/Predis.php index ce8d83b1..c1d0e523 100644 --- a/lib/Predis.php +++ b/lib/Predis.php @@ -1236,6 +1236,8 @@ class RedisServer_vNext extends RedisServer_v1_2 { 'hashDelete' => '\Predis\Commands\HashDelete', 'hkeys' => '\Predis\Commands\HashKeys', 'hashKeys' => '\Predis\Commands\HashKeys', + 'hvals' => '\Predis\Commands\HashValues', + 'hashValues' => '\Predis\Commands\HashValues', )); } } @@ -1762,6 +1764,10 @@ class HashKeys extends \Predis\InlineCommand { public function getCommandId() { return 'HKEYS'; } } +class HashValues extends \Predis\InlineCommand { + public function getCommandId() { return 'HVALS'; } +} + /* multiple databases handling commands */ class SelectDatabase extends \Predis\InlineCommand { public function canBeHashed() { return false; }