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

13 lines
280 B
PHP

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