WP_CLI\Dispatcher

CompositeCommand::get_name()publicWP-CLI 1.0

Get the name of this composite command.

Method of the class: CompositeCommand{}

No Hooks.

Return

String.

Usage

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

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

public function get_name() {
	return $this->name;
}