WP_CLI\Bootstrap

ConfigureRunner::process()publicWP-CLI 1.0

Process this single bootstrapping step.

Метод класса: ConfigureRunner{}

Хуков нет.

Возвращает

BootstrapState. Modified state to pass to the next step.

Использование

$ConfigureRunner = new ConfigureRunner();
$ConfigureRunner->process( $state );
$state(BootstrapState) (обязательный)
Contextual state to pass into the step.

Код ConfigureRunner::process() WP-CLI 2.8.0-alpha

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

	return $state;
}