WP_CLI\Dispatcher

CompositeCommand::set_shortdescpublicWP-CLI 1.0

Set the short description for this composite command.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$CompositeCommand = new CompositeCommand();
$CompositeCommand->set_shortdesc( $shortdesc );
$shortdesc(строка) (обязательный)
.

Код CompositeCommand::set_shortdesc() WP-CLI 2.13.0-alpha

public function set_shortdesc( $shortdesc ) {
	$this->shortdesc = Utils\normalize_eols( $shortdesc );
}