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

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);
}
}