Help_Command::rewrap_param_descprivate staticWP-CLI 1.0

Method of the class: Help_Command{}

No Hooks.

Returns

null. Nothing (null).

Usage

$result = Help_Command::rewrap_param_desc( $matches );
$matches(required)
.

Help_Command::rewrap_param_desc() code WP-CLI 2.13.0-alpha

private static function rewrap_param_desc( $matches ) {
	$param = $matches[1];
	$desc  = self::indent( "\t\t", $matches[2] );
	return "\t$param\n$desc\n\n";
}