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

20 lines
393 B
PHP

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