public function Connection::__destruct in Drupal 10
Same name in this branch
- 10 core/modules/sqlite/src/Driver/Database/sqlite/Connection.php \Drupal\sqlite\Driver\Database\sqlite\Connection::__destruct()
- 10 core/modules/mysql/src/Driver/Database/mysql/Connection.php \Drupal\mysql\Driver\Database\mysql\Connection::__destruct()
File
- core/
modules/ mysql/ src/ Driver/ Database/ mysql/ Connection.php, line 214
Class
- Connection
- MySQL implementation of \Drupal\Core\Database\Connection.
Namespace
Drupal\mysql\Driver\Database\mysqlCode
public function __destruct() {
if ($this->needsCleanup) {
$this
->nextIdDelete();
}
parent::__destruct();
}