1234567891011121314151617181920 |
- <?php
- namespace Predis\Commands;
- class ServerShutdown extends Command
- {
- public function getId() {
- return 'SHUTDOWN';
- }
- protected function onPrefixKeys(Array $arguments, $prefix)
- {
- /* NOOP */
- }
- protected function canBeHashed()
- {
- return false;
- }
- }
|