Files
predis/lib/Predis/Commands/SetIntersection.php
T

14 lines
290 B
PHP

<?php
namespace Predis\Commands;
use Predis\Utils;
use Predis\Command;
class SetIntersection extends Command {
public function getCommandId() { return 'SINTER'; }
public function filterArguments(Array $arguments) {
return Utils::filterArrayArguments($arguments);
}
}