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