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