Makes sure that the Condition object is cloned as well.
File
- drupal/core/lib/Drupal/Core/Entity/Query/QueryBase.php, line 285
- Contains \Drupal\Core\Entity\Query\QueryBase.
Class
- QueryBase
- The base entity query class.
Namespace
Drupal\Core\Entity\Query
Code
function __clone() {
$this->condition = clone $this->condition;
}