public Query::__clone()
Implements the magic __clone function.
File
- core/lib/Drupal/Core/Database/Query/Query.php, line 98
Class
- Query
- Base class for query builders.
Namespace
Drupal\Core\Database\Query
Code
1 2 3 | public function __clone() { $this ->uniqueIdentifier = uniqid( '' , TRUE); } |
Please login to continue.