mirror of
https://github.com/predis/predis.git
synced 2026-08-20 14:21:51 +00:00
10 lines
153 B
PHP
10 lines
153 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ZSetRemoveRangeByRank extends Command {
|
|
public function getId() {
|
|
return 'ZREMRANGEBYRANK';
|
|
}
|
|
}
|