diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Query/AST/InSubselectExpression.php')
-rw-r--r-- | vendor/doctrine/orm/src/Query/AST/InSubselectExpression.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Query/AST/InSubselectExpression.php b/vendor/doctrine/orm/src/Query/AST/InSubselectExpression.php new file mode 100644 index 0000000..1128285 --- /dev/null +++ b/vendor/doctrine/orm/src/Query/AST/InSubselectExpression.php | |||
@@ -0,0 +1,22 @@ | |||
1 | <?php | ||
2 | |||
3 | declare(strict_types=1); | ||
4 | |||
5 | namespace Doctrine\ORM\Query\AST; | ||
6 | |||
7 | use Doctrine\ORM\Query\SqlWalker; | ||
8 | |||
9 | class InSubselectExpression extends Node | ||
10 | { | ||
11 | public function __construct( | ||
12 | public ArithmeticExpression $expression, | ||
13 | public Subselect $subselect, | ||
14 | public bool $not = false, | ||
15 | ) { | ||
16 | } | ||
17 | |||
18 | public function dispatch(SqlWalker $walker): string | ||
19 | { | ||
20 | return $walker->walkInSubselectExpression($this); | ||
21 | } | ||
22 | } | ||