WP_Background_Process::complete()protectedWC 1.0

Complete.

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

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

Хуков нет.

Возвращает

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

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

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

Код WP_Background_Process::complete() WC 8.7.0

protected function complete() {
	// Unschedule the cron healthcheck.
	$this->clear_scheduled_event();
}