You are here

protected function MySQLiSource::_unlockTables in Backup and Migrate 5.0.x

Unlock all tables in the database.

File

src/Core/Source/MySQLiSource.php, line 310

Class

MySQLiSource
@package Drupal\backup_migrate\Core\Source

Namespace

Drupal\backup_migrate\Core\Source

Code

protected function _unlockTables($settings) {
  $this
    ->query('UNLOCK TABLES');
}