Automattic\WooCommerce\Admin\Features\Settings

Transformer::finalize_transformationprivateWC 1.0

Finalize the transformation process.

Method of the class: Transformer{}

No Hooks.

Returns

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 10.5.0

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