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

14 lines
193 B
PHP

<?php
namespace Predis\Commands;
class Quit extends Command {
public function getId() {
return 'QUIT';
}
protected function canBeHashed() {
return false;
}
}