Files
predis/lib/Predis/Commands/SetMove.php
T
2011-03-04 19:37:10 +01:00

10 lines
236 B
PHP

<?php
namespace Predis\Commands;
class SetMove extends Command {
public function canBeHashed() { return false; }
public function getId() { return 'SMOVE'; }
public function parseResponse($data) { return (bool) $data; }
}