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