mirror of
https://github.com/predis/predis.git
synced 2026-08-20 13:33:08 +00:00
13 lines
273 B
PHP
13 lines
273 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Utils;
|
|
|
|
class SetIntersectionStore extends Command {
|
|
public function getId() { return 'SINTERSTORE'; }
|
|
public function filterArguments(Array $arguments) {
|
|
return Utils::filterArrayArguments($arguments);
|
|
}
|
|
}
|