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