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