mirror of
https://github.com/predis/predis.git
synced 2026-08-21 16:10:56 +00:00
20 lines
393 B
PHP
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());
|
|
}
|
|
}
|