vendor/doctrine/orm/lib/Doctrine/ORM/QueryBuilder.php line 40

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\ORM;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Criteria;
  6. use Doctrine\Deprecations\Deprecation;
  7. use Doctrine\ORM\Query\Expr;
  8. use Doctrine\ORM\Query\Parameter;
  9. use Doctrine\ORM\Query\QueryExpressionVisitor;
  10. use InvalidArgumentException;
  11. use RuntimeException;
  12. use function array_keys;
  13. use function array_merge;
  14. use function array_unshift;
  15. use function assert;
  16. use function func_get_args;
  17. use function func_num_args;
  18. use function implode;
  19. use function in_array;
  20. use function is_array;
  21. use function is_numeric;
  22. use function is_object;
  23. use function is_string;
  24. use function key;
  25. use function reset;
  26. use function sprintf;
  27. use function str_starts_with;
  28. use function strpos;
  29. use function strrpos;
  30. use function substr;
  31. /**
  32.  * This class is responsible for building DQL query strings via an object oriented
  33.  * PHP interface.
  34.  */
  35. class QueryBuilder
  36. {
  37.     /** @deprecated */
  38.     public const SELECT 0;
  39.     /** @deprecated */
  40.     public const DELETE 1;
  41.     /** @deprecated */
  42.     public const UPDATE 2;
  43.     /** @deprecated */
  44.     public const STATE_DIRTY 0;
  45.     /** @deprecated */
  46.     public const STATE_CLEAN 1;
  47.     /**
  48.      * The EntityManager used by this QueryBuilder.
  49.      *
  50.      * @var EntityManagerInterface
  51.      */
  52.     private $_em;
  53.     /**
  54.      * The array of DQL parts collected.
  55.      *
  56.      * @psalm-var array<string, mixed>
  57.      */
  58.     private $_dqlParts = [
  59.         'distinct' => false,
  60.         'select'  => [],
  61.         'from'    => [],
  62.         'join'    => [],
  63.         'set'     => [],
  64.         'where'   => null,
  65.         'groupBy' => [],
  66.         'having'  => null,
  67.         'orderBy' => [],
  68.     ];
  69.     /**
  70.      * The type of query this is. Can be select, update or delete.
  71.      *
  72.      * @var int
  73.      * @psalm-var self::SELECT|self::DELETE|self::UPDATE
  74.      */
  75.     private $_type self::SELECT;
  76.     /**
  77.      * The state of the query object. Can be dirty or clean.
  78.      *
  79.      * @var int
  80.      * @psalm-var self::STATE_*
  81.      */
  82.     private $_state self::STATE_CLEAN;
  83.     /**
  84.      * The complete DQL string for this query.
  85.      *
  86.      * @var string|null
  87.      */
  88.     private $_dql;
  89.     /**
  90.      * The query parameters.
  91.      *
  92.      * @var ArrayCollection
  93.      * @psalm-var ArrayCollection<int, Parameter>
  94.      */
  95.     private $parameters;
  96.     /**
  97.      * The index of the first result to retrieve.
  98.      *
  99.      * @var int
  100.      */
  101.     private $_firstResult 0;
  102.     /**
  103.      * The maximum number of results to retrieve.
  104.      *
  105.      * @var int|null
  106.      */
  107.     private $_maxResults null;
  108.     /**
  109.      * Keeps root entity alias names for join entities.
  110.      *
  111.      * @psalm-var array<string, string>
  112.      */
  113.     private $joinRootAliases = [];
  114.     /**
  115.      * Whether to use second level cache, if available.
  116.      *
  117.      * @var bool
  118.      */
  119.     protected $cacheable false;
  120.     /**
  121.      * Second level cache region name.
  122.      *
  123.      * @var string|null
  124.      */
  125.     protected $cacheRegion;
  126.     /**
  127.      * Second level query cache mode.
  128.      *
  129.      * @var int|null
  130.      * @psalm-var Cache::MODE_*|null
  131.      */
  132.     protected $cacheMode;
  133.     /** @var int */
  134.     protected $lifetime 0;
  135.     /**
  136.      * Initializes a new <tt>QueryBuilder</tt> that uses the given <tt>EntityManager</tt>.
  137.      *
  138.      * @param EntityManagerInterface $em The EntityManager to use.
  139.      */
  140.     public function __construct(EntityManagerInterface $em)
  141.     {
  142.         $this->_em        $em;
  143.         $this->parameters = new ArrayCollection();
  144.     }
  145.     /**
  146.      * Gets an ExpressionBuilder used for object-oriented construction of query expressions.
  147.      * This producer method is intended for convenient inline usage. Example:
  148.      *
  149.      * <code>
  150.      *     $qb = $em->createQueryBuilder();
  151.      *     $qb
  152.      *         ->select('u')
  153.      *         ->from('User', 'u')
  154.      *         ->where($qb->expr()->eq('u.id', 1));
  155.      * </code>
  156.      *
  157.      * For more complex expression construction, consider storing the expression
  158.      * builder object in a local variable.
  159.      *
  160.      * @return Query\Expr
  161.      */
  162.     public function expr()
  163.     {
  164.         return $this->_em->getExpressionBuilder();
  165.     }
  166.     /**
  167.      * Enable/disable second level query (result) caching for this query.
  168.      *
  169.      * @param bool $cacheable
  170.      *
  171.      * @return $this
  172.      */
  173.     public function setCacheable($cacheable)
  174.     {
  175.         $this->cacheable = (bool) $cacheable;
  176.         return $this;
  177.     }
  178.     /**
  179.      * Are the query results enabled for second level cache?
  180.      *
  181.      * @return bool
  182.      */
  183.     public function isCacheable()
  184.     {
  185.         return $this->cacheable;
  186.     }
  187.     /**
  188.      * @param string $cacheRegion
  189.      *
  190.      * @return $this
  191.      */
  192.     public function setCacheRegion($cacheRegion)
  193.     {
  194.         $this->cacheRegion = (string) $cacheRegion;
  195.         return $this;
  196.     }
  197.     /**
  198.      * Obtain the name of the second level query cache region in which query results will be stored
  199.      *
  200.      * @return string|null The cache region name; NULL indicates the default region.
  201.      */
  202.     public function getCacheRegion()
  203.     {
  204.         return $this->cacheRegion;
  205.     }
  206.     /**
  207.      * @return int
  208.      */
  209.     public function getLifetime()
  210.     {
  211.         return $this->lifetime;
  212.     }
  213.     /**
  214.      * Sets the life-time for this query into second level cache.
  215.      *
  216.      * @param int $lifetime
  217.      *
  218.      * @return $this
  219.      */
  220.     public function setLifetime($lifetime)
  221.     {
  222.         $this->lifetime = (int) $lifetime;
  223.         return $this;
  224.     }
  225.     /**
  226.      * @return int|null
  227.      * @psalm-return Cache::MODE_*|null
  228.      */
  229.     public function getCacheMode()
  230.     {
  231.         return $this->cacheMode;
  232.     }
  233.     /**
  234.      * @param int $cacheMode
  235.      * @psalm-param Cache::MODE_* $cacheMode
  236.      *
  237.      * @return $this
  238.      */
  239.     public function setCacheMode($cacheMode)
  240.     {
  241.         $this->cacheMode = (int) $cacheMode;
  242.         return $this;
  243.     }
  244.     /**
  245.      * Gets the type of the currently built query.
  246.      *
  247.      * @deprecated If necessary, track the type of the query being built outside of the builder.
  248.      *
  249.      * @return int
  250.      * @psalm-return self::SELECT|self::DELETE|self::UPDATE
  251.      */
  252.     public function getType()
  253.     {
  254.         Deprecation::trigger(
  255.             'doctrine/dbal',
  256.             'https://github.com/doctrine/orm/pull/9945',
  257.             'Relying on the type of the query being built is deprecated.'
  258.             ' If necessary, track the type of the query being built outside of the builder.'
  259.         );
  260.         return $this->_type;
  261.     }
  262.     /**
  263.      * Gets the associated EntityManager for this query builder.
  264.      *
  265.      * @return EntityManagerInterface
  266.      */
  267.     public function getEntityManager()
  268.     {
  269.         return $this->_em;
  270.     }
  271.     /**
  272.      * Gets the state of this query builder instance.
  273.      *
  274.      * @deprecated The builder state is an internal concern.
  275.      *
  276.      * @return int Either QueryBuilder::STATE_DIRTY or QueryBuilder::STATE_CLEAN.
  277.      * @psalm-return self::STATE_*
  278.      */
  279.     public function getState()
  280.     {
  281.         Deprecation::trigger(
  282.             'doctrine/dbal',
  283.             'https://github.com/doctrine/orm/pull/9945',
  284.             'Relying on the query builder state is deprecated as it is an internal concern.'
  285.         );
  286.         return $this->_state;
  287.     }
  288.     /**
  289.      * Gets the complete DQL string formed by the current specifications of this QueryBuilder.
  290.      *
  291.      * <code>
  292.      *     $qb = $em->createQueryBuilder()
  293.      *         ->select('u')
  294.      *         ->from('User', 'u');
  295.      *     echo $qb->getDql(); // SELECT u FROM User u
  296.      * </code>
  297.      *
  298.      * @return string The DQL query string.
  299.      */
  300.     public function getDQL()
  301.     {
  302.         if ($this->_dql !== null && $this->_state === self::STATE_CLEAN) {
  303.             return $this->_dql;
  304.         }
  305.         switch ($this->_type) {
  306.             case self::DELETE:
  307.                 $dql $this->getDQLForDelete();
  308.                 break;
  309.             case self::UPDATE:
  310.                 $dql $this->getDQLForUpdate();
  311.                 break;
  312.             case self::SELECT:
  313.             default:
  314.                 $dql $this->getDQLForSelect();
  315.                 break;
  316.         }
  317.         $this->_state self::STATE_CLEAN;
  318.         $this->_dql   $dql;
  319.         return $dql;
  320.     }
  321.     /**
  322.      * Constructs a Query instance from the current specifications of the builder.
  323.      *
  324.      * <code>
  325.      *     $qb = $em->createQueryBuilder()
  326.      *         ->select('u')
  327.      *         ->from('User', 'u');
  328.      *     $q = $qb->getQuery();
  329.      *     $results = $q->execute();
  330.      * </code>
  331.      *
  332.      * @return Query
  333.      */
  334.     public function getQuery()
  335.     {
  336.         $parameters = clone $this->parameters;
  337.         $query      $this->_em->createQuery($this->getDQL())
  338.             ->setParameters($parameters)
  339.             ->setFirstResult($this->_firstResult)
  340.             ->setMaxResults($this->_maxResults);
  341.         if ($this->lifetime) {
  342.             $query->setLifetime($this->lifetime);
  343.         }
  344.         if ($this->cacheMode) {
  345.             $query->setCacheMode($this->cacheMode);
  346.         }
  347.         if ($this->cacheable) {
  348.             $query->setCacheable($this->cacheable);
  349.         }
  350.         if ($this->cacheRegion) {
  351.             $query->setCacheRegion($this->cacheRegion);
  352.         }
  353.         return $query;
  354.     }
  355.     /**
  356.      * Finds the root entity alias of the joined entity.
  357.      *
  358.      * @param string $alias       The alias of the new join entity
  359.      * @param string $parentAlias The parent entity alias of the join relationship
  360.      */
  361.     private function findRootAlias(string $aliasstring $parentAlias): string
  362.     {
  363.         if (in_array($parentAlias$this->getRootAliases(), true)) {
  364.             $rootAlias $parentAlias;
  365.         } elseif (isset($this->joinRootAliases[$parentAlias])) {
  366.             $rootAlias $this->joinRootAliases[$parentAlias];
  367.         } else {
  368.             // Should never happen with correct joining order. Might be
  369.             // thoughtful to throw exception instead.
  370.             $rootAlias $this->getRootAlias();
  371.         }
  372.         $this->joinRootAliases[$alias] = $rootAlias;
  373.         return $rootAlias;
  374.     }
  375.     /**
  376.      * Gets the FIRST root alias of the query. This is the first entity alias involved
  377.      * in the construction of the query.
  378.      *
  379.      * <code>
  380.      * $qb = $em->createQueryBuilder()
  381.      *     ->select('u')
  382.      *     ->from('User', 'u');
  383.      *
  384.      * echo $qb->getRootAlias(); // u
  385.      * </code>
  386.      *
  387.      * @deprecated Please use $qb->getRootAliases() instead.
  388.      *
  389.      * @return string
  390.      *
  391.      * @throws RuntimeException
  392.      */
  393.     public function getRootAlias()
  394.     {
  395.         $aliases $this->getRootAliases();
  396.         if (! isset($aliases[0])) {
  397.             throw new RuntimeException('No alias was set before invoking getRootAlias().');
  398.         }
  399.         return $aliases[0];
  400.     }
  401.     /**
  402.      * Gets the root aliases of the query. This is the entity aliases involved
  403.      * in the construction of the query.
  404.      *
  405.      * <code>
  406.      *     $qb = $em->createQueryBuilder()
  407.      *         ->select('u')
  408.      *         ->from('User', 'u');
  409.      *
  410.      *     $qb->getRootAliases(); // array('u')
  411.      * </code>
  412.      *
  413.      * @return string[]
  414.      * @psalm-return list<string>
  415.      */
  416.     public function getRootAliases()
  417.     {
  418.         $aliases = [];
  419.         foreach ($this->_dqlParts['from'] as &$fromClause) {
  420.             if (is_string($fromClause)) {
  421.                 $spacePos strrpos($fromClause' ');
  422.                 $from     substr($fromClause0$spacePos);
  423.                 $alias    substr($fromClause$spacePos 1);
  424.                 $fromClause = new Query\Expr\From($from$alias);
  425.             }
  426.             $aliases[] = $fromClause->getAlias();
  427.         }
  428.         return $aliases;
  429.     }
  430.     /**
  431.      * Gets all the aliases that have been used in the query.
  432.      * Including all select root aliases and join aliases
  433.      *
  434.      * <code>
  435.      *     $qb = $em->createQueryBuilder()
  436.      *         ->select('u')
  437.      *         ->from('User', 'u')
  438.      *         ->join('u.articles','a');
  439.      *
  440.      *     $qb->getAllAliases(); // array('u','a')
  441.      * </code>
  442.      *
  443.      * @return string[]
  444.      * @psalm-return list<string>
  445.      */
  446.     public function getAllAliases()
  447.     {
  448.         return array_merge($this->getRootAliases(), array_keys($this->joinRootAliases));
  449.     }
  450.     /**
  451.      * Gets the root entities of the query. This is the entity aliases involved
  452.      * in the construction of the query.
  453.      *
  454.      * <code>
  455.      *     $qb = $em->createQueryBuilder()
  456.      *         ->select('u')
  457.      *         ->from('User', 'u');
  458.      *
  459.      *     $qb->getRootEntities(); // array('User')
  460.      * </code>
  461.      *
  462.      * @return string[]
  463.      * @psalm-return list<string>
  464.      */
  465.     public function getRootEntities()
  466.     {
  467.         $entities = [];
  468.         foreach ($this->_dqlParts['from'] as &$fromClause) {
  469.             if (is_string($fromClause)) {
  470.                 $spacePos strrpos($fromClause' ');
  471.                 $from     substr($fromClause0$spacePos);
  472.                 $alias    substr($fromClause$spacePos 1);
  473.                 $fromClause = new Query\Expr\From($from$alias);
  474.             }
  475.             $entities[] = $fromClause->getFrom();
  476.         }
  477.         return $entities;
  478.     }
  479.     /**
  480.      * Sets a query parameter for the query being constructed.
  481.      *
  482.      * <code>
  483.      *     $qb = $em->createQueryBuilder()
  484.      *         ->select('u')
  485.      *         ->from('User', 'u')
  486.      *         ->where('u.id = :user_id')
  487.      *         ->setParameter('user_id', 1);
  488.      * </code>
  489.      *
  490.      * @param string|int      $key   The parameter position or name.
  491.      * @param mixed           $value The parameter value.
  492.      * @param string|int|null $type  ParameterType::* or \Doctrine\DBAL\Types\Type::* constant
  493.      *
  494.      * @return $this
  495.      */
  496.     public function setParameter($key$value$type null)
  497.     {
  498.         $existingParameter $this->getParameter($key);
  499.         if ($existingParameter !== null) {
  500.             $existingParameter->setValue($value$type);
  501.             return $this;
  502.         }
  503.         $this->parameters->add(new Parameter($key$value$type));
  504.         return $this;
  505.     }
  506.     /**
  507.      * Sets a collection of query parameters for the query being constructed.
  508.      *
  509.      * <code>
  510.      *     $qb = $em->createQueryBuilder()
  511.      *         ->select('u')
  512.      *         ->from('User', 'u')
  513.      *         ->where('u.id = :user_id1 OR u.id = :user_id2')
  514.      *         ->setParameters(new ArrayCollection(array(
  515.      *             new Parameter('user_id1', 1),
  516.      *             new Parameter('user_id2', 2)
  517.      *        )));
  518.      * </code>
  519.      *
  520.      * @param ArrayCollection|mixed[] $parameters The query parameters to set.
  521.      * @psalm-param ArrayCollection<int, Parameter>|mixed[] $parameters
  522.      *
  523.      * @return $this
  524.      */
  525.     public function setParameters($parameters)
  526.     {
  527.         // BC compatibility with 2.3-
  528.         if (is_array($parameters)) {
  529.             /** @psalm-var ArrayCollection<int, Parameter> $parameterCollection */
  530.             $parameterCollection = new ArrayCollection();
  531.             foreach ($parameters as $key => $value) {
  532.                 $parameter = new Parameter($key$value);
  533.                 $parameterCollection->add($parameter);
  534.             }
  535.             $parameters $parameterCollection;
  536.         }
  537.         $this->parameters $parameters;
  538.         return $this;
  539.     }
  540.     /**
  541.      * Gets all defined query parameters for the query being constructed.
  542.      *
  543.      * @return ArrayCollection The currently defined query parameters.
  544.      * @psalm-return ArrayCollection<int, Parameter>
  545.      */
  546.     public function getParameters()
  547.     {
  548.         return $this->parameters;
  549.     }
  550.     /**
  551.      * Gets a (previously set) query parameter of the query being constructed.
  552.      *
  553.      * @param string|int $key The key (index or name) of the bound parameter.
  554.      *
  555.      * @return Parameter|null The value of the bound parameter.
  556.      */
  557.     public function getParameter($key)
  558.     {
  559.         $key Parameter::normalizeName($key);
  560.         $filteredParameters $this->parameters->filter(
  561.             static function (Parameter $parameter) use ($key): bool {
  562.                 $parameterName $parameter->getName();
  563.                 return $key === $parameterName;
  564.             }
  565.         );
  566.         return ! $filteredParameters->isEmpty() ? $filteredParameters->first() : null;
  567.     }
  568.     /**
  569.      * Sets the position of the first result to retrieve (the "offset").
  570.      *
  571.      * @param int|null $firstResult The first result to return.
  572.      *
  573.      * @return $this
  574.      */
  575.     public function setFirstResult($firstResult)
  576.     {
  577.         $this->_firstResult = (int) $firstResult;
  578.         return $this;
  579.     }
  580.     /**
  581.      * Gets the position of the first result the query object was set to retrieve (the "offset").
  582.      * Returns NULL if {@link setFirstResult} was not applied to this QueryBuilder.
  583.      *
  584.      * @return int|null The position of the first result.
  585.      */
  586.     public function getFirstResult()
  587.     {
  588.         return $this->_firstResult;
  589.     }
  590.     /**
  591.      * Sets the maximum number of results to retrieve (the "limit").
  592.      *
  593.      * @param int|null $maxResults The maximum number of results to retrieve.
  594.      *
  595.      * @return $this
  596.      */
  597.     public function setMaxResults($maxResults)
  598.     {
  599.         if ($maxResults !== null) {
  600.             $maxResults = (int) $maxResults;
  601.         }
  602.         $this->_maxResults $maxResults;
  603.         return $this;
  604.     }
  605.     /**
  606.      * Gets the maximum number of results the query object was set to retrieve (the "limit").
  607.      * Returns NULL if {@link setMaxResults} was not applied to this query builder.
  608.      *
  609.      * @return int|null Maximum number of results.
  610.      */
  611.     public function getMaxResults()
  612.     {
  613.         return $this->_maxResults;
  614.     }
  615.     /**
  616.      * Either appends to or replaces a single, generic query part.
  617.      *
  618.      * The available parts are: 'select', 'from', 'join', 'set', 'where',
  619.      * 'groupBy', 'having' and 'orderBy'.
  620.      *
  621.      * @param string              $dqlPartName The DQL part name.
  622.      * @param string|object|array $dqlPart     An Expr object.
  623.      * @param bool                $append      Whether to append (true) or replace (false).
  624.      * @psalm-param string|object|list<string>|array{join: array<int|string, object>} $dqlPart
  625.      *
  626.      * @return $this
  627.      */
  628.     public function add($dqlPartName$dqlPart$append false)
  629.     {
  630.         if ($append && ($dqlPartName === 'where' || $dqlPartName === 'having')) {
  631.             throw new InvalidArgumentException(
  632.                 "Using \$append = true does not have an effect with 'where' or 'having' " .
  633.                 'parts. See QueryBuilder#andWhere() for an example for correct usage.'
  634.             );
  635.         }
  636.         $isMultiple is_array($this->_dqlParts[$dqlPartName])
  637.             && ! ($dqlPartName === 'join' && ! $append);
  638.         // Allow adding any part retrieved from self::getDQLParts().
  639.         if (is_array($dqlPart) && $dqlPartName !== 'join') {
  640.             $dqlPart reset($dqlPart);
  641.         }
  642.         // This is introduced for backwards compatibility reasons.
  643.         // TODO: Remove for 3.0
  644.         if ($dqlPartName === 'join') {
  645.             $newDqlPart = [];
  646.             foreach ($dqlPart as $k => $v) {
  647.                 $k is_numeric($k) ? $this->getRootAlias() : $k;
  648.                 $newDqlPart[$k] = $v;
  649.             }
  650.             $dqlPart $newDqlPart;
  651.         }
  652.         if ($append && $isMultiple) {
  653.             if (is_array($dqlPart)) {
  654.                 $key key($dqlPart);
  655.                 $this->_dqlParts[$dqlPartName][$key][] = $dqlPart[$key];
  656.             } else {
  657.                 $this->_dqlParts[$dqlPartName][] = $dqlPart;
  658.             }
  659.         } else {
  660.             $this->_dqlParts[$dqlPartName] = $isMultiple ? [$dqlPart] : $dqlPart;
  661.         }
  662.         $this->_state self::STATE_DIRTY;
  663.         return $this;
  664.     }
  665.     /**
  666.      * Specifies an item that is to be returned in the query result.
  667.      * Replaces any previously specified selections, if any.
  668.      *
  669.      * <code>
  670.      *     $qb = $em->createQueryBuilder()
  671.      *         ->select('u', 'p')
  672.      *         ->from('User', 'u')
  673.      *         ->leftJoin('u.Phonenumbers', 'p');
  674.      * </code>
  675.      *
  676.      * @param mixed $select The selection expressions.
  677.      *
  678.      * @return $this
  679.      */
  680.     public function select($select null)
  681.     {
  682.         $this->_type self::SELECT;
  683.         if (empty($select)) {
  684.             return $this;
  685.         }
  686.         $selects is_array($select) ? $select func_get_args();
  687.         return $this->add('select', new Expr\Select($selects), false);
  688.     }
  689.     /**
  690.      * Adds a DISTINCT flag to this query.
  691.      *
  692.      * <code>
  693.      *     $qb = $em->createQueryBuilder()
  694.      *         ->select('u')
  695.      *         ->distinct()
  696.      *         ->from('User', 'u');
  697.      * </code>
  698.      *
  699.      * @param bool $flag
  700.      *
  701.      * @return $this
  702.      */
  703.     public function distinct($flag true)
  704.     {
  705.         $this->_dqlParts['distinct'] = (bool) $flag;
  706.         return $this;
  707.     }
  708.     /**
  709.      * Adds an item that is to be returned in the query result.
  710.      *
  711.      * <code>
  712.      *     $qb = $em->createQueryBuilder()
  713.      *         ->select('u')
  714.      *         ->addSelect('p')
  715.      *         ->from('User', 'u')
  716.      *         ->leftJoin('u.Phonenumbers', 'p');
  717.      * </code>
  718.      *
  719.      * @param mixed $select The selection expression.
  720.      *
  721.      * @return $this
  722.      */
  723.     public function addSelect($select null)
  724.     {
  725.         $this->_type self::SELECT;
  726.         if (empty($select)) {
  727.             return $this;
  728.         }
  729.         $selects is_array($select) ? $select func_get_args();
  730.         return $this->add('select', new Expr\Select($selects), true);
  731.     }
  732.     /**
  733.      * Turns the query being built into a bulk delete query that ranges over
  734.      * a certain entity type.
  735.      *
  736.      * <code>
  737.      *     $qb = $em->createQueryBuilder()
  738.      *         ->delete('User', 'u')
  739.      *         ->where('u.id = :user_id')
  740.      *         ->setParameter('user_id', 1);
  741.      * </code>
  742.      *
  743.      * @param string|null $delete The class/type whose instances are subject to the deletion.
  744.      * @param string|null $alias  The class/type alias used in the constructed query.
  745.      *
  746.      * @return $this
  747.      */
  748.     public function delete($delete null$alias null)
  749.     {
  750.         $this->_type self::DELETE;
  751.         if (! $delete) {
  752.             return $this;
  753.         }
  754.         if (! $alias) {
  755.             Deprecation::trigger(
  756.                 'doctrine/orm',
  757.                 'https://github.com/doctrine/orm/issues/9733',
  758.                 'Omitting the alias is deprecated and will throw an exception in Doctrine 3.0.'
  759.             );
  760.         }
  761.         return $this->add('from', new Expr\From($delete$alias));
  762.     }
  763.     /**
  764.      * Turns the query being built into a bulk update query that ranges over
  765.      * a certain entity type.
  766.      *
  767.      * <code>
  768.      *     $qb = $em->createQueryBuilder()
  769.      *         ->update('User', 'u')
  770.      *         ->set('u.password', '?1')
  771.      *         ->where('u.id = ?2');
  772.      * </code>
  773.      *
  774.      * @param string|null $update The class/type whose instances are subject to the update.
  775.      * @param string|null $alias  The class/type alias used in the constructed query.
  776.      *
  777.      * @return $this
  778.      */
  779.     public function update($update null$alias null)
  780.     {
  781.         $this->_type self::UPDATE;
  782.         if (! $update) {
  783.             return $this;
  784.         }
  785.         if (! $alias) {
  786.             Deprecation::trigger(
  787.                 'doctrine/orm',
  788.                 'https://github.com/doctrine/orm/issues/9733',
  789.                 'Omitting the alias is deprecated and will throw an exception in Doctrine 3.0.'
  790.             );
  791.         }
  792.         return $this->add('from', new Expr\From($update$alias));
  793.     }
  794.     /**
  795.      * Creates and adds a query root corresponding to the entity identified by the given alias,
  796.      * forming a cartesian product with any existing query roots.
  797.      *
  798.      * <code>
  799.      *     $qb = $em->createQueryBuilder()
  800.      *         ->select('u')
  801.      *         ->from('User', 'u');
  802.      * </code>
  803.      *
  804.      * @param string      $from    The class name.
  805.      * @param string      $alias   The alias of the class.
  806.      * @param string|null $indexBy The index for the from.
  807.      *
  808.      * @return $this
  809.      */
  810.     public function from($from$alias$indexBy null)
  811.     {
  812.         return $this->add('from', new Expr\From($from$alias$indexBy), true);
  813.     }
  814.     /**
  815.      * Updates a query root corresponding to an entity setting its index by. This method is intended to be used with
  816.      * EntityRepository->createQueryBuilder(), which creates the initial FROM clause and do not allow you to update it
  817.      * setting an index by.
  818.      *
  819.      * <code>
  820.      *     $qb = $userRepository->createQueryBuilder('u')
  821.      *         ->indexBy('u', 'u.id');
  822.      *
  823.      *     // Is equivalent to...
  824.      *
  825.      *     $qb = $em->createQueryBuilder()
  826.      *         ->select('u')
  827.      *         ->from('User', 'u', 'u.id');
  828.      * </code>
  829.      *
  830.      * @param string $alias   The root alias of the class.
  831.      * @param string $indexBy The index for the from.
  832.      *
  833.      * @return $this
  834.      *
  835.      * @throws Query\QueryException
  836.      */
  837.     public function indexBy($alias$indexBy)
  838.     {
  839.         $rootAliases $this->getRootAliases();
  840.         if (! in_array($alias$rootAliasestrue)) {
  841.             throw new Query\QueryException(
  842.                 sprintf('Specified root alias %s must be set before invoking indexBy().'$alias)
  843.             );
  844.         }
  845.         foreach ($this->_dqlParts['from'] as &$fromClause) {
  846.             assert($fromClause instanceof Expr\From);
  847.             if ($fromClause->getAlias() !== $alias) {
  848.                 continue;
  849.             }
  850.             $fromClause = new Expr\From($fromClause->getFrom(), $fromClause->getAlias(), $indexBy);
  851.         }
  852.         return $this;
  853.     }
  854.     /**
  855.      * Creates and adds a join over an entity association to the query.
  856.      *
  857.      * The entities in the joined association will be fetched as part of the query
  858.      * result if the alias used for the joined association is placed in the select
  859.      * expressions.
  860.      *
  861.      * <code>
  862.      *     $qb = $em->createQueryBuilder()
  863.      *         ->select('u')
  864.      *         ->from('User', 'u')
  865.      *         ->join('u.Phonenumbers', 'p', Expr\Join::WITH, 'p.is_primary = 1');
  866.      * </code>
  867.      *
  868.      * @param string                                     $join          The relationship to join.
  869.      * @param string                                     $alias         The alias of the join.
  870.      * @param string|null                                $conditionType The condition type constant. Either ON or WITH.
  871.      * @param string|Expr\Comparison|Expr\Composite|null $condition     The condition for the join.
  872.      * @param string|null                                $indexBy       The index for the join.
  873.      * @psalm-param Expr\Join::ON|Expr\Join::WITH|null $conditionType
  874.      *
  875.      * @return $this
  876.      */
  877.     public function join($join$alias$conditionType null$condition null$indexBy null)
  878.     {
  879.         return $this->innerJoin($join$alias$conditionType$condition$indexBy);
  880.     }
  881.     /**
  882.      * Creates and adds a join over an entity association to the query.
  883.      *
  884.      * The entities in the joined association will be fetched as part of the query
  885.      * result if the alias used for the joined association is placed in the select
  886.      * expressions.
  887.      *
  888.      *     [php]
  889.      *     $qb = $em->createQueryBuilder()
  890.      *         ->select('u')
  891.      *         ->from('User', 'u')
  892.      *         ->innerJoin('u.Phonenumbers', 'p', Expr\Join::WITH, 'p.is_primary = 1');
  893.      *
  894.      * @param string                                     $join          The relationship to join.
  895.      * @param string                                     $alias         The alias of the join.
  896.      * @param string|null                                $conditionType The condition type constant. Either ON or WITH.
  897.      * @param string|Expr\Comparison|Expr\Composite|null $condition     The condition for the join.
  898.      * @param string|null                                $indexBy       The index for the join.
  899.      * @psalm-param Expr\Join::ON|Expr\Join::WITH|null $conditionType
  900.      *
  901.      * @return $this
  902.      */
  903.     public function innerJoin($join$alias$conditionType null$condition null$indexBy null)
  904.     {
  905.         $parentAlias substr($join0, (int) strpos($join'.'));
  906.         $rootAlias $this->findRootAlias($alias$parentAlias);
  907.         $join = new Expr\Join(
  908.             Expr\Join::INNER_JOIN,
  909.             $join,
  910.             $alias,
  911.             $conditionType,
  912.             $condition,
  913.             $indexBy
  914.         );
  915.         return $this->add('join', [$rootAlias => $join], true);
  916.     }
  917.     /**
  918.      * Creates and adds a left join over an entity association to the query.
  919.      *
  920.      * The entities in the joined association will be fetched as part of the query
  921.      * result if the alias used for the joined association is placed in the select
  922.      * expressions.
  923.      *
  924.      * <code>
  925.      *     $qb = $em->createQueryBuilder()
  926.      *         ->select('u')
  927.      *         ->from('User', 'u')
  928.      *         ->leftJoin('u.Phonenumbers', 'p', Expr\Join::WITH, 'p.is_primary = 1');
  929.      * </code>
  930.      *
  931.      * @param string                                     $join          The relationship to join.
  932.      * @param string                                     $alias         The alias of the join.
  933.      * @param string|null                                $conditionType The condition type constant. Either ON or WITH.
  934.      * @param string|Expr\Comparison|Expr\Composite|null $condition     The condition for the join.
  935.      * @param string|null                                $indexBy       The index for the join.
  936.      * @psalm-param Expr\Join::ON|Expr\Join::WITH|null $conditionType
  937.      *
  938.      * @return $this
  939.      */
  940.     public function leftJoin($join$alias$conditionType null$condition null$indexBy null)
  941.     {
  942.         $parentAlias substr($join0, (int) strpos($join'.'));
  943.         $rootAlias $this->findRootAlias($alias$parentAlias);
  944.         $join = new Expr\Join(
  945.             Expr\Join::LEFT_JOIN,
  946.             $join,
  947.             $alias,
  948.             $conditionType,
  949.             $condition,
  950.             $indexBy
  951.         );
  952.         return $this->add('join', [$rootAlias => $join], true);
  953.     }
  954.     /**
  955.      * Sets a new value for a field in a bulk update query.
  956.      *
  957.      * <code>
  958.      *     $qb = $em->createQueryBuilder()
  959.      *         ->update('User', 'u')
  960.      *         ->set('u.password', '?1')
  961.      *         ->where('u.id = ?2');
  962.      * </code>
  963.      *
  964.      * @param string $key   The key/field to set.
  965.      * @param mixed  $value The value, expression, placeholder, etc.
  966.      *
  967.      * @return $this
  968.      */
  969.     public function set($key$value)
  970.     {
  971.         return $this->add('set', new Expr\Comparison($keyExpr\Comparison::EQ$value), true);
  972.     }
  973.     /**
  974.      * Specifies one or more restrictions to the query result.
  975.      * Replaces any previously specified restrictions, if any.
  976.      *
  977.      * <code>
  978.      *     $qb = $em->createQueryBuilder()
  979.      *         ->select('u')
  980.      *         ->from('User', 'u')
  981.      *         ->where('u.id = ?');
  982.      *
  983.      *     // You can optionally programmatically build and/or expressions
  984.      *     $qb = $em->createQueryBuilder();
  985.      *
  986.      *     $or = $qb->expr()->orX();
  987.      *     $or->add($qb->expr()->eq('u.id', 1));
  988.      *     $or->add($qb->expr()->eq('u.id', 2));
  989.      *
  990.      *     $qb->update('User', 'u')
  991.      *         ->set('u.password', '?')
  992.      *         ->where($or);
  993.      * </code>
  994.      *
  995.      * @param mixed $predicates The restriction predicates.
  996.      *
  997.      * @return $this
  998.      */
  999.     public function where($predicates)
  1000.     {
  1001.         if (! (func_num_args() === && $predicates instanceof Expr\Composite)) {
  1002.             $predicates = new Expr\Andx(func_get_args());
  1003.         }
  1004.         return $this->add('where'$predicates);
  1005.     }
  1006.     /**
  1007.      * Adds one or more restrictions to the query results, forming a logical
  1008.      * conjunction with any previously specified restrictions.
  1009.      *
  1010.      * <code>
  1011.      *     $qb = $em->createQueryBuilder()
  1012.      *         ->select('u')
  1013.      *         ->from('User', 'u')
  1014.      *         ->where('u.username LIKE ?')
  1015.      *         ->andWhere('u.is_active = 1');
  1016.      * </code>
  1017.      *
  1018.      * @see where()
  1019.      *
  1020.      * @param mixed $where The query restrictions.
  1021.      *
  1022.      * @return $this
  1023.      */
  1024.     public function andWhere()
  1025.     {
  1026.         $args  func_get_args();
  1027.         $where $this->getDQLPart('where');
  1028.         if ($where instanceof Expr\Andx) {
  1029.             $where->addMultiple($args);
  1030.         } else {
  1031.             array_unshift($args$where);
  1032.             $where = new Expr\Andx($args);
  1033.         }
  1034.         return $this->add('where'$where);
  1035.     }
  1036.     /**
  1037.      * Adds one or more restrictions to the query results, forming a logical
  1038.      * disjunction with any previously specified restrictions.
  1039.      *
  1040.      * <code>
  1041.      *     $qb = $em->createQueryBuilder()
  1042.      *         ->select('u')
  1043.      *         ->from('User', 'u')
  1044.      *         ->where('u.id = 1')
  1045.      *         ->orWhere('u.id = 2');
  1046.      * </code>
  1047.      *
  1048.      * @see where()
  1049.      *
  1050.      * @param mixed $where The WHERE statement.
  1051.      *
  1052.      * @return $this
  1053.      */
  1054.     public function orWhere()
  1055.     {
  1056.         $args  func_get_args();
  1057.         $where $this->getDQLPart('where');
  1058.         if ($where instanceof Expr\Orx) {
  1059.             $where->addMultiple($args);
  1060.         } else {
  1061.             array_unshift($args$where);
  1062.             $where = new Expr\Orx($args);
  1063.         }
  1064.         return $this->add('where'$where);
  1065.     }
  1066.     /**
  1067.      * Specifies a grouping over the results of the query.
  1068.      * Replaces any previously specified groupings, if any.
  1069.      *
  1070.      * <code>
  1071.      *     $qb = $em->createQueryBuilder()
  1072.      *         ->select('u')
  1073.      *         ->from('User', 'u')
  1074.      *         ->groupBy('u.id');
  1075.      * </code>
  1076.      *
  1077.      * @param string $groupBy The grouping expression.
  1078.      *
  1079.      * @return $this
  1080.      */
  1081.     public function groupBy($groupBy)
  1082.     {
  1083.         return $this->add('groupBy', new Expr\GroupBy(func_get_args()));
  1084.     }
  1085.     /**
  1086.      * Adds a grouping expression to the query.
  1087.      *
  1088.      * <code>
  1089.      *     $qb = $em->createQueryBuilder()
  1090.      *         ->select('u')
  1091.      *         ->from('User', 'u')
  1092.      *         ->groupBy('u.lastLogin')
  1093.      *         ->addGroupBy('u.createdAt');
  1094.      * </code>
  1095.      *
  1096.      * @param string $groupBy The grouping expression.
  1097.      *
  1098.      * @return $this
  1099.      */
  1100.     public function addGroupBy($groupBy)
  1101.     {
  1102.         return $this->add('groupBy', new Expr\GroupBy(func_get_args()), true);
  1103.     }
  1104.     /**
  1105.      * Specifies a restriction over the groups of the query.
  1106.      * Replaces any previous having restrictions, if any.
  1107.      *
  1108.      * @param mixed $having The restriction over the groups.
  1109.      *
  1110.      * @return $this
  1111.      */
  1112.     public function having($having)
  1113.     {
  1114.         if (! (func_num_args() === && ($having instanceof Expr\Andx || $having instanceof Expr\Orx))) {
  1115.             $having = new Expr\Andx(func_get_args());
  1116.         }
  1117.         return $this->add('having'$having);
  1118.     }
  1119.     /**
  1120.      * Adds a restriction over the groups of the query, forming a logical
  1121.      * conjunction with any existing having restrictions.
  1122.      *
  1123.      * @param mixed $having The restriction to append.
  1124.      *
  1125.      * @return $this
  1126.      */
  1127.     public function andHaving($having)
  1128.     {
  1129.         $args   func_get_args();
  1130.         $having $this->getDQLPart('having');
  1131.         if ($having instanceof Expr\Andx) {
  1132.             $having->addMultiple($args);
  1133.         } else {
  1134.             array_unshift($args$having);
  1135.             $having = new Expr\Andx($args);
  1136.         }
  1137.         return $this->add('having'$having);
  1138.     }
  1139.     /**
  1140.      * Adds a restriction over the groups of the query, forming a logical
  1141.      * disjunction with any existing having restrictions.
  1142.      *
  1143.      * @param mixed $having The restriction to add.
  1144.      *
  1145.      * @return $this
  1146.      */
  1147.     public function orHaving($having)
  1148.     {
  1149.         $args   func_get_args();
  1150.         $having $this->getDQLPart('having');
  1151.         if ($having instanceof Expr\Orx) {
  1152.             $having->addMultiple($args);
  1153.         } else {
  1154.             array_unshift($args$having);
  1155.             $having = new Expr\Orx($args);
  1156.         }
  1157.         return $this->add('having'$having);
  1158.     }
  1159.     /**
  1160.      * Specifies an ordering for the query results.
  1161.      * Replaces any previously specified orderings, if any.
  1162.      *
  1163.      * @param string|Expr\OrderBy $sort  The ordering expression.
  1164.      * @param string|null         $order The ordering direction.
  1165.      *
  1166.      * @return $this
  1167.      */
  1168.     public function orderBy($sort$order null)
  1169.     {
  1170.         $orderBy $sort instanceof Expr\OrderBy $sort : new Expr\OrderBy($sort$order);
  1171.         return $this->add('orderBy'$orderBy);
  1172.     }
  1173.     /**
  1174.      * Adds an ordering to the query results.
  1175.      *
  1176.      * @param string|Expr\OrderBy $sort  The ordering expression.
  1177.      * @param string|null         $order The ordering direction.
  1178.      *
  1179.      * @return $this
  1180.      */
  1181.     public function addOrderBy($sort$order null)
  1182.     {
  1183.         $orderBy $sort instanceof Expr\OrderBy $sort : new Expr\OrderBy($sort$order);
  1184.         return $this->add('orderBy'$orderBytrue);
  1185.     }
  1186.     /**
  1187.      * Adds criteria to the query.
  1188.      *
  1189.      * Adds where expressions with AND operator.
  1190.      * Adds orderings.
  1191.      * Overrides firstResult and maxResults if they're set.
  1192.      *
  1193.      * @return $this
  1194.      *
  1195.      * @throws Query\QueryException
  1196.      */
  1197.     public function addCriteria(Criteria $criteria)
  1198.     {
  1199.         $allAliases $this->getAllAliases();
  1200.         if (! isset($allAliases[0])) {
  1201.             throw new Query\QueryException('No aliases are set before invoking addCriteria().');
  1202.         }
  1203.         $visitor = new QueryExpressionVisitor($this->getAllAliases());
  1204.         $whereExpression $criteria->getWhereExpression();
  1205.         if ($whereExpression) {
  1206.             $this->andWhere($visitor->dispatch($whereExpression));
  1207.             foreach ($visitor->getParameters() as $parameter) {
  1208.                 $this->parameters->add($parameter);
  1209.             }
  1210.         }
  1211.         if ($criteria->getOrderings()) {
  1212.             foreach ($criteria->getOrderings() as $sort => $order) {
  1213.                 $hasValidAlias false;
  1214.                 foreach ($allAliases as $alias) {
  1215.                     if (str_starts_with($sort '.'$alias '.')) {
  1216.                         $hasValidAlias true;
  1217.                         break;
  1218.                     }
  1219.                 }
  1220.                 if (! $hasValidAlias) {
  1221.                     $sort $allAliases[0] . '.' $sort;
  1222.                 }
  1223.                 $this->addOrderBy($sort$order);
  1224.             }
  1225.         }
  1226.         // Overwrite limits only if they was set in criteria
  1227.         $firstResult $criteria->getFirstResult();
  1228.         if ($firstResult 0) {
  1229.             $this->setFirstResult($firstResult);
  1230.         }
  1231.         $maxResults $criteria->getMaxResults();
  1232.         if ($maxResults !== null) {
  1233.             $this->setMaxResults($maxResults);
  1234.         }
  1235.         return $this;
  1236.     }
  1237.     /**
  1238.      * Gets a query part by its name.
  1239.      *
  1240.      * @param string $queryPartName
  1241.      *
  1242.      * @return mixed $queryPart
  1243.      */
  1244.     public function getDQLPart($queryPartName)
  1245.     {
  1246.         return $this->_dqlParts[$queryPartName];
  1247.     }
  1248.     /**
  1249.      * Gets all query parts.
  1250.      *
  1251.      * @psalm-return array<string, mixed> $dqlParts
  1252.      */
  1253.     public function getDQLParts()
  1254.     {
  1255.         return $this->_dqlParts;
  1256.     }
  1257.     private function getDQLForDelete(): string
  1258.     {
  1259.          return 'DELETE'
  1260.               $this->getReducedDQLQueryPart('from', ['pre' => ' ''separator' => ', '])
  1261.               . $this->getReducedDQLQueryPart('where', ['pre' => ' WHERE '])
  1262.               . $this->getReducedDQLQueryPart('orderBy', ['pre' => ' ORDER BY ''separator' => ', ']);
  1263.     }
  1264.     private function getDQLForUpdate(): string
  1265.     {
  1266.          return 'UPDATE'
  1267.               $this->getReducedDQLQueryPart('from', ['pre' => ' ''separator' => ', '])
  1268.               . $this->getReducedDQLQueryPart('set', ['pre' => ' SET ''separator' => ', '])
  1269.               . $this->getReducedDQLQueryPart('where', ['pre' => ' WHERE '])
  1270.               . $this->getReducedDQLQueryPart('orderBy', ['pre' => ' ORDER BY ''separator' => ', ']);
  1271.     }
  1272.     private function getDQLForSelect(): string
  1273.     {
  1274.         $dql 'SELECT'
  1275.              . ($this->_dqlParts['distinct'] === true ' DISTINCT' '')
  1276.              . $this->getReducedDQLQueryPart('select', ['pre' => ' ''separator' => ', ']);
  1277.         $fromParts   $this->getDQLPart('from');
  1278.         $joinParts   $this->getDQLPart('join');
  1279.         $fromClauses = [];
  1280.         // Loop through all FROM clauses
  1281.         if (! empty($fromParts)) {
  1282.             $dql .= ' FROM ';
  1283.             foreach ($fromParts as $from) {
  1284.                 $fromClause = (string) $from;
  1285.                 if ($from instanceof Expr\From && isset($joinParts[$from->getAlias()])) {
  1286.                     foreach ($joinParts[$from->getAlias()] as $join) {
  1287.                         $fromClause .= ' ' . ((string) $join);
  1288.                     }
  1289.                 }
  1290.                 $fromClauses[] = $fromClause;
  1291.             }
  1292.         }
  1293.         $dql .= implode(', '$fromClauses)
  1294.               . $this->getReducedDQLQueryPart('where', ['pre' => ' WHERE '])
  1295.               . $this->getReducedDQLQueryPart('groupBy', ['pre' => ' GROUP BY ''separator' => ', '])
  1296.               . $this->getReducedDQLQueryPart('having', ['pre' => ' HAVING '])
  1297.               . $this->getReducedDQLQueryPart('orderBy', ['pre' => ' ORDER BY ''separator' => ', ']);
  1298.         return $dql;
  1299.     }
  1300.     /**
  1301.      * @psalm-param array<string, mixed> $options
  1302.      */
  1303.     private function getReducedDQLQueryPart(string $queryPartName, array $options = []): string
  1304.     {
  1305.         $queryPart $this->getDQLPart($queryPartName);
  1306.         if (empty($queryPart)) {
  1307.             return $options['empty'] ?? '';
  1308.         }
  1309.         return ($options['pre'] ?? '')
  1310.              . (is_array($queryPart) ? implode($options['separator'], $queryPart) : $queryPart)
  1311.              . ($options['post'] ?? '');
  1312.     }
  1313.     /**
  1314.      * Resets DQL parts.
  1315.      *
  1316.      * @param string[]|null $parts
  1317.      * @psalm-param list<string>|null $parts
  1318.      *
  1319.      * @return $this
  1320.      */
  1321.     public function resetDQLParts($parts null)
  1322.     {
  1323.         if ($parts === null) {
  1324.             $parts array_keys($this->_dqlParts);
  1325.         }
  1326.         foreach ($parts as $part) {
  1327.             $this->resetDQLPart($part);
  1328.         }
  1329.         return $this;
  1330.     }
  1331.     /**
  1332.      * Resets single DQL part.
  1333.      *
  1334.      * @param string $part
  1335.      *
  1336.      * @return $this
  1337.      */
  1338.     public function resetDQLPart($part)
  1339.     {
  1340.         $this->_dqlParts[$part] = is_array($this->_dqlParts[$part]) ? [] : null;
  1341.         $this->_state           self::STATE_DIRTY;
  1342.         return $this;
  1343.     }
  1344.     /**
  1345.      * Gets a string representation of this QueryBuilder which corresponds to
  1346.      * the final DQL query being constructed.
  1347.      *
  1348.      * @return string The string representation of this QueryBuilder.
  1349.      */
  1350.     public function __toString()
  1351.     {
  1352.         return $this->getDQL();
  1353.     }
  1354.     /**
  1355.      * Deep clones all expression objects in the DQL parts.
  1356.      *
  1357.      * @return void
  1358.      */
  1359.     public function __clone()
  1360.     {
  1361.         foreach ($this->_dqlParts as $part => $elements) {
  1362.             if (is_array($this->_dqlParts[$part])) {
  1363.                 foreach ($this->_dqlParts[$part] as $idx => $element) {
  1364.                     if (is_object($element)) {
  1365.                         $this->_dqlParts[$part][$idx] = clone $element;
  1366.                     }
  1367.                 }
  1368.             } elseif (is_object($elements)) {
  1369.                 $this->_dqlParts[$part] = clone $elements;
  1370.             }
  1371.         }
  1372.         $parameters = [];
  1373.         foreach ($this->parameters as $parameter) {
  1374.             $parameters[] = clone $parameter;
  1375.         }
  1376.         $this->parameters = new ArrayCollection($parameters);
  1377.     }
  1378. }