mirror of
https://github.com/predis/predis.git
synced 2026-08-20 19:01:59 +00:00
10 lines
133 B
PHP
10 lines
133 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class SetRange extends Command {
|
|
public function getId() {
|
|
return 'SETRANGE';
|
|
}
|
|
}
|