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