mirror of
https://github.com/predis/predis.git
synced 2026-08-23 22:19:42 +00:00
14 lines
318 B
PHP
14 lines
318 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Utils;
|
|
|
|
class SetIntersection extends Command {
|
|
protected function canBeHashed() { return false; }
|
|
public function getId() { return 'SINTER'; }
|
|
public function filterArguments(Array $arguments) {
|
|
return Utils::filterArrayArguments($arguments);
|
|
}
|
|
}
|