type) === 'ALL'; } public function isAny(): bool { return strtoupper($this->type) === 'ANY'; } public function isSome(): bool { return strtoupper($this->type) === 'SOME'; } public function dispatch(SqlWalker $walker): string { return $walker->walkQuantifiedExpression($this); } }