WP_CLI\Bootstrap

ConfigureRunner::process()publicWP-CLI 1.0

Process this single bootstrapping step.

Method of the class: ConfigureRunner{}

No Hooks.

Return

BootstrapState. Modified state to pass to the next step.

Usage

$ConfigureRunner = new ConfigureRunner();
$ConfigureRunner->process( $state );
$state(BootstrapState) (required)
Contextual state to pass into the step.

ConfigureRunner::process() code WP-CLI 2.8.0-alpha

public function process( BootstrapState $state ) {
	$runner = new RunnerInstance();
	$runner()->init_config();

	return $state;
}