WP_CLI\Dispatcher

CompositeCommand::get_parent()publicWP-CLI 1.0

Get the parent composite (or root) command

Метод класса: CompositeCommand{}

Хуков нет.

Возвращает

Разное.

Использование

$CompositeCommand = new CompositeCommand();
$CompositeCommand->get_parent();

Код CompositeCommand::get_parent() WP-CLI 2.8.0-alpha

public function get_parent() {
	return $this->parent;
}