Files
predis/lib/Predis/Commands/SetIntersectionStore.php
T
2011-04-05 16:37:36 +02:00

21 lines
496 B
PHP

<?php
namespace Predis\Commands;
class SetIntersectionStore extends Command {
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;
}
protected function canBeHashed() {
return $this->checkSameHashForKeys($this->getArguments());
}
}