Files
predis/lib/Predis/Commands/Keys.php
T

11 lines
194 B
PHP

<?php
namespace Predis\Commands;
use Predis\Command;
class Keys extends Command {
public function canBeHashed() { return false; }
public function getCommandId() { return 'KEYS'; }
}