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