mirror of
https://github.com/predis/predis.git
synced 2026-08-24 21:29:35 +00:00
18 lines
289 B
PHP
18 lines
289 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class KeyRenamePreserve extends Command {
|
|
public function getId() {
|
|
return 'RENAMENX';
|
|
}
|
|
|
|
protected function canBeHashed() {
|
|
return false;
|
|
}
|
|
|
|
public function parseResponse($data) {
|
|
return (bool) $data;
|
|
}
|
|
}
|