* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Predis\Commands; /** * @link http://redis.io/commands/watch * @author Daniele Alessandri */ class TransactionWatch extends Command implements IPrefixable { /** * {@inheritdoc} */ public function getId() { return 'WATCH'; } /** * {@inheritdoc} */ protected function filterArguments(Array $arguments) { if (isset($arguments[0]) && is_array($arguments[0])) { return $arguments[0]; } return $arguments; } /** * {@inheritdoc} */ public function prefixKeys($prefix) { PrefixHelpers::all($this, $prefix); } /** * {@inheritdoc} */ protected function canBeHashed() { return false; } /** * {@inheritdoc} */ public function parseResponse($data) { return (bool) $data; } }