* @copyright 2010-2014 Justin Swanhart and André Rothe * @license http://www.debian.org/misc/bsd.license BSD License (3 Clause) * @version SVN: $Id$ * */ namespace PHPSQLParser\builders; use PHPSQLParser\utils\ExpressionType; /** * This class implements the builder list of values for the IN statement. * You can overwrite all functions to achieve another handling. * * @author André Rothe * @license http://www.debian.org/misc/bsd.license BSD License (3 Clause) * */ class InListBuilder implements Builder { protected function buildSubTree($parsed, $delim) { $builder = new SubTreeBuilder(); return $builder->build($parsed, $delim); } public function build(array $parsed) { if ($parsed['expr_type'] !== ExpressionType::IN_LIST) { return ""; } $sql = $this->buildSubTree($parsed, ", "); return "(" . $sql . ")"; } } ?>