Sha256: 13f29a9d9626c2900a6c530aad099b7d66add298e63c8fd2e37c08088a65ceee

Contents?: true

Size: 380 Bytes

Versions: 7

Compression:

Stored size: 380 Bytes

Contents

<?php

namespace Predis\Commands;

class TransactionUnwatch extends Command {
    public function getId() {
        return 'UNWATCH';
    }

    protected function onPrefixKeys(Array $arguments, $prefix) {
        /* NOOP */
    }

    protected function canBeHashed() {
        return false;
    }

    public function parseResponse($data) {
        return (bool) $data;
    }
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
appstats-0.25.1 doc/benchmarks/Predis/Commands/TransactionUnwatch.php
appstats-0.25.0 doc/benchmarks/Predis/Commands/TransactionUnwatch.php
appstats-0.24.0 doc/benchmarks/Predis/Commands/TransactionUnwatch.php
appstats-0.23.5 doc/benchmarks/Predis/Commands/TransactionUnwatch.php
appstats-0.23.4 doc/benchmarks/Predis/Commands/TransactionUnwatch.php
appstats-0.23.3 doc/benchmarks/Predis/Commands/TransactionUnwatch.php
appstats-0.23.2 doc/benchmarks/Predis/Commands/TransactionUnwatch.php