mirror of
https://github.com/predis/predis.git
synced 2026-08-24 03:29:32 +00:00
14 lines
207 B
PHP
14 lines
207 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ServerShutdown extends Command {
|
|
public function getId() {
|
|
return 'SHUTDOWN';
|
|
}
|
|
|
|
protected function canBeHashed() {
|
|
return false;
|
|
}
|
|
}
|