ServerSave.php 302 B

123456789101112131415161718192021
  1. <?php
  2. namespace Predis\Commands;
  3. class ServerSave extends Command
  4. {
  5. public function getId()
  6. {
  7. return 'SAVE';
  8. }
  9. protected function onPrefixKeys(Array $arguments, $prefix)
  10. {
  11. /* NOOP */
  12. }
  13. protected function canBeHashed()
  14. {
  15. return false;
  16. }
  17. }