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

10 lines
229 B
PHP

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