mirror of
https://github.com/predis/predis.git
synced 2026-08-20 03:22:38 +00:00
9 lines
166 B
PHP
9 lines
166 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class Quit extends Command {
|
|
public function canBeHashed() { return false; }
|
|
public function getId() { return 'QUIT'; }
|
|
}
|