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