Sha256: e0a13f272d332a08731a7e2a6fb8f0f1ac56b92dacb6c3523d6c9a74f495634d

Contents?: true

Size: 354 Bytes

Versions: 7

Compression:

Stored size: 354 Bytes

Contents

<?php

namespace Predis\Commands;

use Predis\Helpers;

class SetRemove extends Command {
    public function getId() {
        return 'SREM';
    }

    protected function filterArguments(Array $arguments) {
        return Helpers::filterVariadicValues($arguments);
    }

    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/SetRemove.php
appstats-0.25.0 doc/benchmarks/Predis/Commands/SetRemove.php
appstats-0.24.0 doc/benchmarks/Predis/Commands/SetRemove.php
appstats-0.23.5 doc/benchmarks/Predis/Commands/SetRemove.php
appstats-0.23.4 doc/benchmarks/Predis/Commands/SetRemove.php
appstats-0.23.3 doc/benchmarks/Predis/Commands/SetRemove.php
appstats-0.23.2 doc/benchmarks/Predis/Commands/SetRemove.php