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