Help_Command::rewrap_param_desc
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() 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";
}