blob: eadf6bc41f708d57cc4140a344a1500cea3d7b8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Query\AST;
/**
* SubselectIdentificationVariableDeclaration ::= AssociationPathExpression ["AS"] AliasIdentificationVariable
*
* @link www.doctrine-project.org
*/
class SubselectIdentificationVariableDeclaration
{
public function __construct(
public PathExpression $associationPathExpression,
public string $aliasIdentificationVariable,
) {
}
}
|