Quit.php 250 B

1234567891011
  1. <?php
  2. namespace Predis\Commands;
  3. use Predis\Command;
  4. class Quit extends Command {
  5. public function canBeHashed() { return false; }
  6. public function getCommandId() { return 'QUIT'; }
  7. public function closesConnection() { return true; }
  8. }