WP_CLI\Dispatcher
CompositeCommand::__construct()
Instantiate a new CompositeCommand
Метод класса: CompositeCommand{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$CompositeCommand = new CompositeCommand(); $CompositeCommand->__construct( $parent, $name, $docparser );
- $parent(разное) (обязательный)
- Parent command (either Root or Composite)
- $name(строка) (обязательный)
- Represents how command should be invoked
- $docparser(DocParser) (обязательный)
- -
Код CompositeCommand::__construct() CompositeCommand:: construct WP-CLI 2.8.0-alpha
public function __construct( $parent, $name, $docparser ) { $this->parent = $parent; $this->name = $name; $this->shortdesc = $docparser->get_shortdesc(); $this->longdesc = $docparser->get_longdesc(); $this->docparser = $docparser; $when_to_invoke = $docparser->get_tag( 'when' ); if ( $when_to_invoke ) { WP_CLI::get_runner()->register_early_invoke( $when_to_invoke, $this ); } }