Automattic\WooCommerce\Admin\Features\Settings

Transformer::finalize_transformation()privateWC 1.0

Finalize the transformation process.

Method of the class: Transformer{}

No Hooks.

Return

null. Nothing (null).

Usage

// private - for code of main (parent) class only
$result = $this->finalize_transformation( $transformed_settings ): void;
$transformed_settings(array) (required)
-

Transformer::finalize_transformation() code WC 9.7.1

private function finalize_transformation( array &$transformed_settings ): void {
	$this->flush_current_checkbox_group();
	$this->flush_current_group( $transformed_settings );
}