WC_Background_Updater::complete
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 Background Updater::complete WC 10.5.2
protected function complete() {
$logger = wc_get_logger();
$logger->info( 'Data update complete', array( 'source' => 'wc_db_updates' ) );
WC_Install::update_db_version();
parent::complete();
}