mirror of
https://github.com/predis/predis.git
synced 2026-08-25 03:59:39 +00:00
12 lines
250 B
PHP
12 lines
250 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class Quit extends Command {
|
|
public function canBeHashed() { return false; }
|
|
public function getCommandId() { return 'QUIT'; }
|
|
public function closesConnection() { return true; }
|
|
}
|