Files
predis/lib/Predis/Commands/SetIntersection.php
T

20 lines
389 B
PHP

<?php
namespace Predis\Commands;
use Predis\Utils;
class SetIntersection extends Command {
public function getId() {
return 'SINTER';
}
public function filterArguments(Array $arguments) {
return Utils::filterArrayArguments($arguments);
}
protected function canBeHashed() {
return $this->checkSameHashForKeys($this->getArguments());
}
}