mirror of
https://github.com/predis/predis.git
synced 2026-08-19 22:11:48 +00:00
0e3b105959
Backported from the master branch. Many thanks to @rubensayshi for his initial commits on this in #163, but I had to start from scratch for the master branch first.
44 lines
821 B
PHP
44 lines
821 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Predis package.
|
|
*
|
|
* (c) Daniele Alessandri <suppakilla@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Predis\Command;
|
|
|
|
/**
|
|
* @link http://redis.io/commands/pfmerge
|
|
* @author Daniele Alessandri <suppakilla@gmail.com>
|
|
*/
|
|
class HyperLogLogMerge extends PrefixableCommand
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getId()
|
|
{
|
|
return 'PFMERGE';
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function filterArguments(array $arguments)
|
|
{
|
|
return self::normalizeArguments($arguments);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function prefixKeys($prefix)
|
|
{
|
|
PrefixHelpers::all($this, $prefix);
|
|
}
|
|
}
|