WC_Tax_Rate_Importer::import_start()privateWC 1.0

Import is starting.

Method of the class: WC_Tax_Rate_Importer{}

No Hooks.

Return

null. Nothing (null).

Usage

// private - for code of main (parent) class only
$result = $this->import_start();

WC_Tax_Rate_Importer::import_start() code WC 8.6.1

private function import_start() {
	if ( function_exists( 'gc_enable' ) ) {
		gc_enable(); // phpcs:ignore PHPCompatibility.FunctionUse.NewFunctions.gc_enableFound
	}
	wc_set_time_limit( 0 );
	@ob_flush();
	@flush();
}