mirror of
https://github.com/predis/predis.git
synced 2026-08-25 08:59:36 +00:00
12 lines
139 B
PHP
12 lines
139 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class StringGetSet extends Command
|
|
{
|
|
public function getId()
|
|
{
|
|
return 'GETSET';
|
|
}
|
|
}
|