mirror of
https://github.com/predis/predis.git
synced 2026-08-23 21:19:35 +00:00
8 lines
132 B
PHP
8 lines
132 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ZSetReverseRange extends ZSetRange {
|
|
public function getId() { return 'ZREVRANGE'; }
|
|
}
|