Action_Scheduler\WP_CLI

ProgressBar::finish()publicWC 1.0

Finish the current progress bar.

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

Хуков нет.

Возвращает

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

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

$ProgressBar = new ProgressBar();
$ProgressBar->finish();

Код ProgressBar::finish() WC 8.7.0

public function finish() {
	if ( null !== $this->progress_bar ) {
		$this->progress_bar->finish();
	}

	$this->progress_bar = null;
}