Automattic\WooCommerce\Internal\CLI\Migrator\Core
WooCommerceProductImporter::reset_stats
Reset import statistics.
Method of the class: WooCommerceProductImporter{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WooCommerceProductImporter = new WooCommerceProductImporter(); $WooCommerceProductImporter->reset_stats(): void;
WooCommerceProductImporter::reset_stats() WooCommerceProductImporter::reset stats code WC 10.7.0
public function reset_stats(): void {
$this->import_stats = array(
'products_created' => 0,
'products_updated' => 0,
'products_skipped' => 0,
'images_processed' => 0,
'errors_encountered' => 0,
);
}