mirror of
https://github.com/predis/predis.git
synced 2026-08-26 04:49:52 +00:00
10 lines
146 B
PHP
10 lines
146 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class HashKeys extends Command {
|
|
public function getCommandId() { return 'HKEYS'; }
|
|
}
|