mirror of
https://github.com/predis/predis.git
synced 2026-08-24 15:19:32 +00:00
12 lines
143 B
PHP
12 lines
143 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class StringSetRange extends Command
|
|
{
|
|
public function getId()
|
|
{
|
|
return 'SETRANGE';
|
|
}
|
|
}
|