Help_Command::rewrap_param_desc()private staticWP-CLI 1.0

Method of the class: Help_Command{}

No Hooks.

Return

null. Nothing (null).

Usage

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

Help_Command::rewrap_param_desc() code WP-CLI 2.8.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";
}