Automattic\WooCommerce\Internal\CLI\Migrator\Lib
ImportSession::count_all_imported_entities
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() 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' ) );
}