mirror of
https://github.com/predis/predis.git
synced 2026-08-24 20:29:42 +00:00
12 lines
134 B
PHP
12 lines
134 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class HashKeys extends Command
|
|
{
|
|
public function getId()
|
|
{
|
|
return 'HKEYS';
|
|
}
|
|
}
|