WP_CLI\Bootstrap

DeclareAbstractBaseCommand{}WP-CLI 1.0

Class DeclareAbstractBaseCommand.

Declares the abstract WP_CLI_Command base class.

No Hooks.

Usage

$DeclareAbstractBaseCommand = new DeclareAbstractBaseCommand();
// use class methods

Methods

  1. public process( BootstrapState $state )

Notes

  • Package: WP_CLI\Bootstrap

DeclareAbstractBaseCommand{} code WP-CLI 2.8.0-alpha

final class DeclareAbstractBaseCommand 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 ) {
		require_once WP_CLI_ROOT . '/php/class-wp-cli-command.php';

		return $state;
	}
}