mirror of
https://github.com/predis/predis.git
synced 2026-08-21 18:50:57 +00:00
10 lines
230 B
PHP
10 lines
230 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class Shutdown extends Command {
|
|
public function canBeHashed() { return false; }
|
|
public function getId() { return 'SHUTDOWN'; }
|
|
public function closesConnection() { return true; }
|
|
}
|