public function Query::__clone in Zircon Profile 8
Same name in this branch
- 8 core/lib/Drupal/Core/Database/Query/Query.php \Drupal\Core\Database\Query\Query::__clone()
- 8 core/lib/Drupal/Core/Entity/Query/Sql/Query.php \Drupal\Core\Entity\Query\Sql\Query::__clone()
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Entity/Query/Sql/Query.php \Drupal\Core\Entity\Query\Sql\Query::__clone()
Implements the magic __clone method.
Reset fields and GROUP BY when cloning.
Overrides QueryBase::__clone
File
- core/
lib/ Drupal/ Core/ Entity/ Query/ Sql/ Query.php, line 304 - Contains \Drupal\Core\Entity\Query\Sql\Query.
Class
- Query
- The SQL storage entity query class.
Namespace
Drupal\Core\Entity\Query\SqlCode
public function __clone() {
parent::__clone();
$this->sqlFields = array();
$this->sqlGroupBy = array();
}