mirror of
https://github.com/predis/predis.git
synced 2026-08-21 19:52:33 +00:00
10 lines
149 B
PHP
10 lines
149 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class SetRange extends Command {
|
|
public function getCommandId() { return 'SETRANGE'; }
|
|
}
|