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.

Method of the class: CompositeCommand{}

No Hooks.

Return

String.

Usage

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

CompositeCommand::get_synopsis() code WP-CLI 2.8.0-alpha

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