mirror of
https://github.com/predis/predis.git
synced 2026-08-22 13:32:20 +00:00
10 lines
165 B
PHP
10 lines
165 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ZSetReverseRangeByScore extends ZSetRangeByScore {
|
|
public function getId() {
|
|
return 'ZREVRANGEBYSCORE';
|
|
}
|
|
}
|