WC_Background_Updater::complete()protectedWC 1.0

Complete

Override if applicable, but ensure that the below actions are performed, or, call parent::complete().

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

Хуков нет.

Возвращает

null. Ничего (null).

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->complete();

Код WC_Background_Updater::complete() WC 8.7.0

protected function complete() {
	$logger = wc_get_logger();
	$logger->info( 'Data update complete', array( 'source' => 'wc_db_updates' ) );
	WC_Install::update_db_version();
	parent::complete();
}