Automattic\WooCommerce\Admin\Features\OnboardingTasks

Task::is_complete()publicWC 1.0

Check if the task is complete.

Method of the class: Task{}

No Hooks.

Return

true|false.

Usage

$Task = new Task();
$Task->is_complete();

Task::is_complete() code WC 8.7.0

public function is_complete() {
	return self::is_actioned();
}