mirror of
https://github.com/predis/predis.git
synced 2026-08-23 21:09:37 +00:00
10 lines
129 B
PHP
10 lines
129 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class StringSet extends Command {
|
|
public function getId() {
|
|
return 'SET';
|
|
}
|
|
}
|