mirror of
https://github.com/predis/predis.git
synced 2026-08-25 17:49:39 +00:00
10 lines
171 B
PHP
10 lines
171 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class ZSetRemoveRangeByScore extends Command {
|
|
public function getCommandId() { return 'ZREMRANGEBYSCORE'; }
|
|
}
|