Automattic\WooCommerce\Internal\CLI\Migrator\Lib

ImportSession::count_all_imported_entitiespublicWC 1.0

Method of the class: ImportSession{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ImportSession = new ImportSession();
$ImportSession->count_all_imported_entities();

ImportSession::count_all_imported_entities() code WC 10.7.0

public function count_all_imported_entities() {
	$counts = $this->count_imported_entities();

	return array_sum( array_column( $counts, 'imported' ) );
}