ServerShutdown.php 306 B

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