Automattic\WooCommerce\Database\Migrations\CustomOrderTable

PostsToOrdersMigrationController::commit_transaction()privateWC 1.0

Commit the current database transaction.

Метод класса: PostsToOrdersMigrationController{}

Хуков нет.

Возвращает

true|false. True on success, false on error.

Использование

// private - только в коде основоного (родительского) класса
$result = $this->commit_transaction(): bool;

Код PostsToOrdersMigrationController::commit_transaction() WC 8.7.0

private function commit_transaction(): bool {
	return $this->db_query( 'COMMIT' );
}