Current path: home/webdevt/www/schtroumpf.fr/vendor/doctrine/orm/lib/Doctrine/ORM/Query/AST/
?? Go up: /home/webdevt/www/schtroumpf.fr/vendor/doctrine/orm/lib/Doctrine/ORM/Query
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Query\AST;
/**
* SubselectIdentificationVariableDeclaration ::= AssociationPathExpression ["AS"] AliasIdentificationVariable
*
* @link www.doctrine-project.org
*/
class SubselectIdentificationVariableDeclaration
{
/** @var PathExpression */
public $associationPathExpression;
/** @var string */
public $aliasIdentificationVariable;
/**
* @param PathExpression $associationPathExpression
* @param string $aliasIdentificationVariable
*/
public function __construct($associationPathExpression, $aliasIdentificationVariable)
{
$this->associationPathExpression = $associationPathExpression;
$this->aliasIdentificationVariable = $aliasIdentificationVariable;
}
}