diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Query/AST/JoinAssociationPathExpression.php')
| -rw-r--r-- | vendor/doctrine/orm/src/Query/AST/JoinAssociationPathExpression.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Query/AST/JoinAssociationPathExpression.php b/vendor/doctrine/orm/src/Query/AST/JoinAssociationPathExpression.php new file mode 100644 index 0000000..230be36 --- /dev/null +++ b/vendor/doctrine/orm/src/Query/AST/JoinAssociationPathExpression.php | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | <?php | ||
| 2 | |||
| 3 | declare(strict_types=1); | ||
| 4 | |||
| 5 | namespace Doctrine\ORM\Query\AST; | ||
| 6 | |||
| 7 | /** | ||
| 8 | * JoinAssociationPathExpression ::= IdentificationVariable "." (SingleValuedAssociationField | CollectionValuedAssociationField) | ||
| 9 | * | ||
| 10 | * @link www.doctrine-project.org | ||
| 11 | */ | ||
| 12 | class JoinAssociationPathExpression extends Node | ||
| 13 | { | ||
| 14 | public function __construct( | ||
| 15 | public string $identificationVariable, | ||
| 16 | public string $associationField, | ||
| 17 | ) { | ||
| 18 | } | ||
| 19 | } | ||
