mirror of
https://github.com/predis/predis.git
synced 2026-08-25 12:59:39 +00:00
19 lines
501 B
PHP
19 lines
501 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Utils;
|
|
|
|
class SetIntersectionStore extends Command {
|
|
protected function canBeHashed() {
|
|
return $this->checkSameHashForKeys($this->getArguments());
|
|
}
|
|
public function getId() { return 'SINTERSTORE'; }
|
|
public function filterArguments(Array $arguments) {
|
|
if (count($arguments) === 2 && is_array($arguments[1])) {
|
|
return array_merge(array($arguments[0]), $arguments[1]);
|
|
}
|
|
return $arguments;
|
|
}
|
|
}
|