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