diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Query/AST/HavingClause.php')
-rw-r--r-- | vendor/doctrine/orm/src/Query/AST/HavingClause.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Query/AST/HavingClause.php b/vendor/doctrine/orm/src/Query/AST/HavingClause.php new file mode 100644 index 0000000..0d4d821 --- /dev/null +++ b/vendor/doctrine/orm/src/Query/AST/HavingClause.php | |||
@@ -0,0 +1,19 @@ | |||
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 HavingClause extends Node | ||
10 | { | ||
11 | public function __construct(public ConditionalExpression|Phase2OptimizableConditional $conditionalExpression) | ||
12 | { | ||
13 | } | ||
14 | |||
15 | public function dispatch(SqlWalker $walker): string | ||
16 | { | ||
17 | return $walker->walkHavingClause($this); | ||
18 | } | ||
19 | } | ||