WP_CLI\Dispatcher

CompositeCommand::get_name()publicWP-CLI 1.0

Get the name of this composite command.

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

Хуков нет.

Возвращает

Строку.

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

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

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

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