mirror of
https://github.com/predis/predis.git
synced 2026-08-24 17:59:43 +00:00
12 lines
133 B
PHP
12 lines
133 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class StringSet extends Command
|
|
{
|
|
public function getId()
|
|
{
|
|
return 'SET';
|
|
}
|
|
}
|