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