WP_CLI\Bootstrap
DeclareAbstractBaseCommand{}└─ BootstrapStep
Class DeclareAbstractBaseCommand.
Declares the abstract WP_CLI_Command base class.
Хуков нет.
Использование
$DeclareAbstractBaseCommand = new DeclareAbstractBaseCommand(); // use class methods
Методы
Заметки
- Пакет: WP_CLI\Bootstrap
Код DeclareAbstractBaseCommand{} DeclareAbstractBaseCommand{} WP-CLI 2.13.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;
}
}