WP_CLI\Dispatcher

CompositeCommand::get_synopsis()publicWP-CLI 1.0

Get the synopsis for this composite command. As a collection of subcommands, the composite command is only intended to invoke those subcommands.

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

Хуков нет.

Возвращает

Строку.

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

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

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

public function get_synopsis() {
	return '<command>';
}