Files
predis/lib/Predis/Commands/SetIntersectionStore.php
T
2011-03-04 19:37:10 +01:00

13 lines
273 B
PHP

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