subselect = $subselect; } /** * @return bool */ public function isAll() { return strtoupper($this->type) === 'ALL'; } /** * @return bool */ public function isAny() { return strtoupper($this->type) === 'ANY'; } /** * @return bool */ public function isSome() { return strtoupper($this->type) === 'SOME'; } /** * {@inheritdoc} */ public function dispatch($sqlWalker) { return $sqlWalker->walkQuantifiedExpression($this); } }