Sha256: 1672fd537e355359fef6caaf4c9682e10a2896bef67a7b7851b5cf3696dfa02b

Contents?: true

Size: 395 Bytes

Versions: 7

Compression:

Stored size: 395 Bytes

Contents

<?php

namespace Predis\Commands;

class ListPopLastPushHead extends Command {
    public function getId() {
        return 'RPOPLPUSH';
    }

    protected function onPrefixKeys(Array $arguments, $prefix) {
        return PrefixHelpers::multipleKeys($arguments, $prefix);
    }

    protected function canBeHashed() {
        return $this->checkSameHashForKeys($this->getArguments());
    }
}

Version data entries

7 entries across 7 versions & 1 rubygems

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