Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks

ExtendStore::is_dismissable()publicWC 1.0

Always dismissable.

Method of the class: ExtendStore{}

No Hooks.

Return

true|false.

Usage

$ExtendStore = new ExtendStore();
$ExtendStore->is_dismissable();

ExtendStore::is_dismissable() code WC 9.7.1

public function is_dismissable() {
	return false;
}