WC_Tax_Rate_Importer::import_start()privateWC 1.0

Import is starting.

Метод класса: WC_Tax_Rate_Importer{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

// private - только в коде основоного (родительского) класса
$result = $this->import_start();

Код WC_Tax_Rate_Importer::import_start() WC 8.7.0

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();
}