public Schema::__construct($connection)
File
- core/lib/Drupal/Core/Database/Schema.php, line 41
Class
- Schema
- Provides a base implementation for Database Schema.
Namespace
Drupal\Core\Database
Code
1 2 3 4 | public function __construct( $connection ) { $this ->uniqueIdentifier = uniqid( '' , TRUE); $this ->connection = $connection ; } |
Please login to continue.