summaryrefslogtreecommitdiff
path: root/vendor/doctrine/orm/src/Query/AST/JoinClassPathExpression.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/doctrine/orm/src/Query/AST/JoinClassPathExpression.php')
-rw-r--r--vendor/doctrine/orm/src/Query/AST/JoinClassPathExpression.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Query/AST/JoinClassPathExpression.php b/vendor/doctrine/orm/src/Query/AST/JoinClassPathExpression.php
new file mode 100644
index 0000000..cc92782
--- /dev/null
+++ b/vendor/doctrine/orm/src/Query/AST/JoinClassPathExpression.php
@@ -0,0 +1,26 @@
1<?php
2
3declare(strict_types=1);
4
5namespace Doctrine\ORM\Query\AST;
6
7use Doctrine\ORM\Query\SqlWalker;
8
9/**
10 * JoinClassPathExpression ::= AbstractSchemaName ["AS"] AliasIdentificationVariable
11 *
12 * @link www.doctrine-project.org
13 */
14class JoinClassPathExpression extends Node
15{
16 public function __construct(
17 public mixed $abstractSchemaName,
18 public mixed $aliasIdentificationVariable,
19 ) {
20 }
21
22 public function dispatch(SqlWalker $walker): string
23 {
24 return $walker->walkJoinPathExpression($this);
25 }
26}