You are here

public function Schema::__clone in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Database/Schema.php \Drupal\Core\Database\Schema::__clone()

Implements the magic __clone function.

File

core/lib/Drupal/Core/Database/Schema.php, line 54
Contains \Drupal\Core\Database\Schema.

Class

Schema
Provides a base implementation for Database Schema.

Namespace

Drupal\Core\Database

Code

public function __clone() {
  $this->uniqueIdentifier = uniqid('', TRUE);
}