File: //usr/local/wp/php/WP_CLI/Bootstrap/LaunchRunner.php
<?php
namespace WP_CLI\Bootstrap;
/**
* Class LaunchRunner.
*
* Kick off the Runner object that starts the actual commands.
*
* @package WP_CLI\Bootstrap
*/
final class LaunchRunner implements BootstrapStep {
/**
* Process this single bootstrapping step.
*
* @param BootstrapState $state Contextual state to pass into the step.
*
* @return BootstrapState Modified state to pass to the next step.
*/
public function process( BootstrapState $state ) {
$runner = new RunnerInstance();
$runner()->register_context_manager(
$state->getValue( 'context_manager' )
);
$runner()->start();
return $state;
}
}