We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09af921 commit ab7c0f8Copy full SHA for ab7c0f8
php/commands/help.php
@@ -8,6 +8,8 @@ class Help_Command extends Terminus_Command {
8
/**
9
* Get help on a certain command.
10
*
11
+ * <command>
12
+ *
13
* ## EXAMPLES
14
15
* # get help for `core` command
@@ -43,8 +45,8 @@ private static function find_subcommand( $args ) {
43
45
}
44
46
47
private static function show_help( $command ) {
- $out = self::get_initial_markdown( $command );
48
49
+ $out = self::get_initial_markdown( $command );
50
$longdesc = $command->get_longdesc();
51
if ( $longdesc ) {
52
$out .= wordwrap( $longdesc, 79 ) . "\n";
@@ -142,4 +144,3 @@ private static function get_max_len( $strings ) {
142
144
143
145
146
Terminus::add_command( 'help', 'Help_Command' );
-
0 commit comments