Skip to content

Commit c489302

Browse files
committed
don't check 'internal' flag; it doesn't exist anymore
1 parent cc883cb commit c489302

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

_utils/cmd-list.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
$wp = read_json();
1313

1414
foreach ( $wp['subcommands'] as $command ) {
15-
if ( !$command['internal'] )
16-
continue;
17-
1815
echo <<<EOB
1916
<tr>
2017
<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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@
88
include __DIR__ . '/utils.php';
99

1010
function generate_synopsis( $command, $path = '' ) {
11-
if ( isset( $command['internal'] ) && !$command['internal'] )
12-
continue;
13-
1411
$full_path = $path . ' ' . $command['name'];
1512

1613
if ( !isset( $command['subcommands'] ) ) {

0 commit comments

Comments
 (0)