Automattic\WooCommerce\Internal\ProductAttributesLookup

CLIRunner::cleanup_regeneration_progresspublicWC 1.0

Delete the temporary data used during the regeneration of the product attributes lookup table. This data is normally deleted automatically after the regeneration process finishes.

Method of the class: CLIRunner{}

No Hooks.

Returns

null. Nothing (null).

Usage

$CLIRunner = new CLIRunner();
$CLIRunner->cleanup_regeneration_progress( $args, $assoc_args );
$args(array)
Positional arguments passed to the command.
Default: array()
$assoc_args(array)
Associative arguments (options) passed to the command.
Default: array()

CLIRunner::cleanup_regeneration_progress() code WC 9.9.5

public function cleanup_regeneration_progress( array $args = array(), array $assoc_args = array() ) {
	return $this->invoke( 'cleanup_regeneration_progress_core', $args, $assoc_args );
}