mirror of
https://github.com/predis/predis.git
synced 2026-08-25 03:19:40 +00:00
17 lines
204 B
PHP
17 lines
204 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class KeyKeys extends Command
|
|
{
|
|
public function getId()
|
|
{
|
|
return 'KEYS';
|
|
}
|
|
|
|
protected function canBeHashed()
|
|
{
|
|
return false;
|
|
}
|
|
}
|