Files
predis/lib/Predis/Commands/SetMove.php
T

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;
}
}