KeyKeys.php 204 B

12345678910111213141516
  1. <?php
  2. namespace Predis\Commands;
  3. class KeyKeys extends Command
  4. {
  5. public function getId()
  6. {
  7. return 'KEYS';
  8. }
  9. protected function canBeHashed()
  10. {
  11. return false;
  12. }
  13. }