Automattic\WooCommerce\Internal\CLI\Migrator\Core

WooCommerceProductImporter::set_progress_callbackpublicWC 1.0

Set progress callback for per-product import updates.

Method of the class: WooCommerceProductImporter{}

No Hooks.

Returns

null. Nothing (null).

Usage

$WooCommerceProductImporter = new WooCommerceProductImporter();
$WooCommerceProductImporter->set_progress_callback( ?callable $callback ): void;
?callable $callback(required)
.

WooCommerceProductImporter::set_progress_callback() code WC 10.7.0

public function set_progress_callback( ?callable $callback ): void {
	$this->progress_callback = $callback;
}