mirror of
https://github.com/predis/predis.git
synced 2026-08-24 02:29:40 +00:00
8 lines
150 B
PHP
8 lines
150 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ZSetRemoveRangeByScore extends Command {
|
|
public function getCommandId() { return 'ZREMRANGEBYSCORE'; }
|
|
}
|