Files
predis/lib/Predis/Commands/KeyKeys.php
T
2011-10-18 15:51:55 +02:00

17 lines
204 B
PHP

<?php
namespace Predis\Commands;
class KeyKeys extends Command
{
public function getId()
{
return 'KEYS';
}
protected function canBeHashed()
{
return false;
}
}