Files
predis/lib/Predis/Commands/Quit.php
T
2011-03-04 19:37:10 +01:00

10 lines
222 B
PHP

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