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