mirror of
https://github.com/predis/predis.git
synced 2026-08-23 22:09:38 +00:00
13 lines
270 B
PHP
13 lines
270 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Utils;
|
|
|
|
class SetIntersection extends Command {
|
|
public function getCommandId() { return 'SINTER'; }
|
|
public function filterArguments(Array $arguments) {
|
|
return Utils::filterArrayArguments($arguments);
|
|
}
|
|
}
|