Automattic\WooCommerce\Internal\ProductAttributesLookup

CLIRunner::resume_regenerationpublicWC 1.0

Resume the background regeneration of the product attributes lookup table after it has been aborted.

Method of the class: CLIRunner{}

No Hooks.

Returns

null. Nothing (null).

Usage

$CLIRunner = new CLIRunner();
$CLIRunner->resume_regeneration( $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::resume_regeneration() code WC 9.9.5

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