Automattic\WooCommerce\Blueprint

BuiltInStepProcessors::get_allpublicWC 1.0

Returns an array of all step processors.

Method of the class: BuiltInStepProcessors{}

No Hooks.

Returns

Array. The array of step processors.

Usage

$BuiltInStepProcessors = new BuiltInStepProcessors();
$BuiltInStepProcessors->get_all();

BuiltInStepProcessors::get_all() code WC 9.9.5

public function get_all() {
	return array(
		$this->create_install_plugins_processor(),
		$this->create_install_themes_processor(),
		new ImportSetSiteOptions(),
		new ImportActivatePlugin(),
		new ImportActivateTheme(),
		new ImportRunSql(),
	);
}