WP_CLI\Bootstrap
DeclareFallbackFunctions::process()
Process this single bootstrapping step.
Method of the class: DeclareFallbackFunctions{}
No Hooks.
Return
BootstrapState
. Modified state to pass to the next step.
Usage
$DeclareFallbackFunctions = new DeclareFallbackFunctions(); $DeclareFallbackFunctions->process( $state );
- $state(BootstrapState) (required)
- Contextual state to pass into the step.
DeclareFallbackFunctions::process() DeclareFallbackFunctions::process code WP-CLI 2.8.0-alpha
public function process( BootstrapState $state ) { include __DIR__ . '/../../fallback-functions.php'; return $state; }