mirror of
https://github.com/predis/predis.git
synced 2026-08-24 00:39:45 +00:00
10 lines
222 B
PHP
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; }
|
|
}
|