We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc883cb commit c489302Copy full SHA for c489302
_utils/cmd-list.php
@@ -12,9 +12,6 @@
12
$wp = read_json();
13
14
foreach ( $wp['subcommands'] as $command ) {
15
- if ( !$command['internal'] )
16
- continue;
17
-
18
echo <<<EOB
19
<tr>
20
<td><a href="https://github.com/wp-cli/wp-cli/blob/master/php/commands/{$command['name']}.php">{$command['name']}</a></td>
_utils/syn-list.php
@@ -8,9 +8,6 @@
8
include __DIR__ . '/utils.php';
9
10
function generate_synopsis( $command, $path = '' ) {
11
- if ( isset( $command['internal'] ) && !$command['internal'] )
$full_path = $path . ' ' . $command['name'];
if ( !isset( $command['subcommands'] ) ) {
0 commit comments