value is: ' . WP_CLI::get_config( 'url' ) );
-```
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-get-php-binary.md b/internal-api/wp-cli-get-php-binary.md
deleted file mode 100644
index e9edb746..00000000
--- a/internal-api/wp-cli-get-php-binary.md
+++ /dev/null
@@ -1,54 +0,0 @@
-# WP_CLI::get_php_binary()
-
-Get the path to the PHP binary used when executing WP-CLI.
-
-***
-
-## Usage
-
- WP_CLI::get_php_binary()
-
-
-@return (string)
-
-
-
-***
-
-## Notes
-
-Environment values permit specific binaries to be indicated.
-
-Note: moved to Utils, left for BC.
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-halt.md b/internal-api/wp-cli-halt.md
deleted file mode 100644
index 22bbdf0e..00000000
--- a/internal-api/wp-cli-halt.md
+++ /dev/null
@@ -1,72 +0,0 @@
-# WP_CLI::halt()
-
-Halt script execution with a specific return code.
-
-***
-
-## Usage
-
- WP_CLI::halt( $return_code )
-
-
-$return_code (integer)
-@return (never)
-
-
-
-***
-
-## Notes
-
-Permits script execution to be overloaded by `WP_CLI::runcommand()`
-
-When `--debug` is enabled, this method will also output a backtrace
-showing where the halt was triggered from, making it easier to identify
-the cause of early termination.
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-has-config.md b/internal-api/wp-cli-has-config.md
deleted file mode 100644
index 3bd24c03..00000000
--- a/internal-api/wp-cli-has-config.md
+++ /dev/null
@@ -1,52 +0,0 @@
-# WP_CLI::has_config()
-
-Confirm that a global configuration parameter does exist.
-
-***
-
-## Usage
-
- WP_CLI::has_config( $key )
-
-
-$key (string) Config parameter key to check.
-@return (bool)
-
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-launch-self.md b/internal-api/wp-cli-launch-self.md
deleted file mode 100644
index 0a4dc53c..00000000
--- a/internal-api/wp-cli-launch-self.md
+++ /dev/null
@@ -1,57 +0,0 @@
-# WP_CLI::launch_self()
-
-Run a WP-CLI command in a new process reusing the current runtime arguments.
-
-***
-
-## Usage
-
- WP_CLI::launch_self( $command, $args = [], $assoc_args = [], $exit_on_error = true, $return_detailed = false, $runtime_args = [] )
-
-
-$command (string) WP-CLI command to call.
-$args (array) Positional arguments to include when calling the command.
-$assoc_args (array) Associative arguments to include when calling the command.
-$exit_on_error (bool) Whether to exit if the command returns an elevated return code.
-$return_detailed (bool) Whether to return an exit status (default) or detailed execution results.
-$runtime_args (array) Override one or more global args (path,url,user,allow-root)
-@return (int|ProcessRun) command exit status, or a ProcessRun instance
-
-
-
-***
-
-## Notes
-
-Use `WP_CLI::runcommand()` instead, which is easier to use and works better.
-
-Note: While this command does persist a limited set of runtime arguments,
-it *does not* persist environment variables. Practically speaking, WP-CLI
-packages won't be loaded when using WP_CLI::launch_self() because the
-launched process doesn't have access to the current process $HOME.
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-launch.md b/internal-api/wp-cli-launch.md
deleted file mode 100644
index bad9b273..00000000
--- a/internal-api/wp-cli-launch.md
+++ /dev/null
@@ -1,56 +0,0 @@
-# WP_CLI::launch()
-
-Launch an arbitrary external process that takes over I/O.
-
-***
-
-## Usage
-
- WP_CLI::launch( $command, $exit_on_error = true, $return_detailed = false )
-
-
-$command (string) External process to launch.
-$exit_on_error (boolean) Whether to exit if the command returns an elevated return code.
-$return_detailed (boolean) Whether to return an exit status (default) or detailed execution results.
-@return (int|ProcessRun) command exit status, or a ProcessRun object for full details.
-
-
-
-***
-
-## Notes
-
-```
-# `wp core download` falls back to the `tar` binary when PharData isn't available
-if ( ! class_exists( 'PharData' ) ) {
- $cmd = "tar xz --strip-components=1 --directory=%s -f $tarball";
- WP_CLI::launch( Utils\esc_cmd( $cmd, $dest ) );
- return;
-}
-```
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-line.md b/internal-api/wp-cli-line.md
deleted file mode 100644
index f7a081ee..00000000
--- a/internal-api/wp-cli-line.md
+++ /dev/null
@@ -1,69 +0,0 @@
-# WP_CLI::line()
-
-Display informational message without prefix, and ignore `--quiet`.
-
-***
-
-## Usage
-
- WP_CLI::line( $message = '' )
-
-
-$message (string) Message to display to the end user.
-@return (void)
-
-
-
-***
-
-## Notes
-
-Message is written to STDOUT. `WP_CLI::log()` is typically recommended;
-`WP_CLI::line()` is included for historical compat.
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-log.md b/internal-api/wp-cli-log.md
deleted file mode 100644
index 256275c3..00000000
--- a/internal-api/wp-cli-log.md
+++ /dev/null
@@ -1,72 +0,0 @@
-# WP_CLI::log()
-
-Display informational message without prefix.
-
-***
-
-## Usage
-
- WP_CLI::log( $message )
-
-
-$message (string) Message to write to STDOUT.
-
-
-
-***
-
-## Notes
-
-Message is written to STDOUT, or discarded when `--quiet` flag is supplied.
-
-```
-# `wp cli update` lets user know of each step in the update process.
-WP_CLI::log( sprintf( 'Downloading from %s...', $download_url ) );
-```
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-read-value.md b/internal-api/wp-cli-read-value.md
deleted file mode 100644
index a51843fa..00000000
--- a/internal-api/wp-cli-read-value.md
+++ /dev/null
@@ -1,52 +0,0 @@
-# WP_CLI::read_value()
-
-Read a value, from various formats.
-
-***
-
-## Usage
-
- WP_CLI::read_value( $raw_value, $assoc_args = [] )
-
-
-$raw_value (string)
-$assoc_args (array)
-
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-run-command.md b/internal-api/wp-cli-run-command.md
deleted file mode 100644
index 7f2fb426..00000000
--- a/internal-api/wp-cli-run-command.md
+++ /dev/null
@@ -1,57 +0,0 @@
-# WP_CLI::run_command()
-
-Run a given command within the current process using the same global parameters.
-
-***
-
-## Usage
-
- WP_CLI::run_command( $args, $assoc_args = [] )
-
-
-$args (array) Positional arguments including command name.
-$assoc_args (array)
-
-
-
-***
-
-## Notes
-
-Use `WP_CLI::runcommand()` instead, which is easier to use and works better.
-
-To run a command using a new process with the same global parameters,
-use WP_CLI::launch_self(). To run a command using a new process with
-different global parameters, use WP_CLI::launch().
-
-```
-ob_start();
-WP_CLI::run_command( array( 'cli', 'cmd-dump' ) );
-$ret = ob_get_clean();
-```
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-runcommand.md b/internal-api/wp-cli-runcommand.md
deleted file mode 100644
index 49366c0d..00000000
--- a/internal-api/wp-cli-runcommand.md
+++ /dev/null
@@ -1,66 +0,0 @@
-# WP_CLI::runcommand()
-
-Run a WP-CLI command.
-
-***
-
-## Usage
-
- WP_CLI::runcommand( $command, $options = [] )
-
-
-$command (string) WP-CLI command to run, including arguments.
-$options (array) {
Configuration options for command execution.
@type bool $launch Launches a new process (true) or reuses the existing process (false). Default: true.
@type bool $exit_error Halts the script on error. Default: true.
@type bool|string $return Returns output as an object when set to 'all' (string), return just the 'stdout', 'stderr', or 'return_code' (string) of command, or print directly to stdout/stderr (false). Default: false.
@type bool|string $parse Parse returned output as 'json' (string); otherwise, output is unchanged (false). Default: false.
@type array $command_args Contains additional command line arguments for the command. Each element represents a single argument. Default: empty array.
}
-@return (mixed)
-
-
-
-***
-
-## Notes
-
-Launches a new child process to run a specified WP-CLI command.
-Optionally:
-
-* Run the command in an existing process.
-* Prevent halting script execution on error.
-* Capture and return STDOUT, or full details about command execution.
-* Parse JSON output if the command rendered it.
-* Include additional arguments that are passed to the command.
-
-```
-$options = array(
- 'return' => true, // Return 'STDOUT'; use 'all' for full object.
- 'parse' => 'json', // Parse captured STDOUT to JSON array.
- 'launch' => false, // Reuse the current process.
- 'exit_error' => true, // Halt script execution on error.
- 'command_args' => [ '--skip-themes' ], // Additional arguments to be passed to the $command.
-);
-$plugins = WP_CLI::runcommand( 'plugin list --format=json', $options );
-```
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
-
-- WP_CLI::launch() - Launch an arbitrary external process that takes over I/O.
-
-
-- WP_CLI::launch_self() - Run a WP-CLI command in a new process reusing the current runtime arguments.
-
-
-- WP_CLI::run_command() - Run a given command within the current process using the same global parameters.
-
-
-
-
-
-
diff --git a/internal-api/wp-cli-success.md b/internal-api/wp-cli-success.md
deleted file mode 100644
index 46d5ceaa..00000000
--- a/internal-api/wp-cli-success.md
+++ /dev/null
@@ -1,80 +0,0 @@
-# WP_CLI::success()
-
-Display success message prefixed with "Success: ".
-
-***
-
-## Usage
-
- WP_CLI::success( $message )
-
-
-$message (string) Message to write to STDOUT.
-@return (void)
-
-
-
-***
-
-## Notes
-
-Success message is written to STDOUT, or discarded when `--quiet` flag is supplied.
-
-Typically recommended to inform user of successful script conclusion.
-
-```
-# wp rewrite flush expects 'rewrite_rules' option to be set after flush.
-flush_rewrite_rules( \WP_CLI\Utils\get_flag_value( $assoc_args, 'hard' ) );
-if ( ! get_option( 'rewrite_rules' ) ) {
- WP_CLI::warning( "Rewrite rules are empty." );
-} else {
- WP_CLI::success( 'Rewrite rules flushed.' );
-}
-```
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-basename.md b/internal-api/wp-cli-utils-basename.md
deleted file mode 100644
index bf8a6d88..00000000
--- a/internal-api/wp-cli-utils-basename.md
+++ /dev/null
@@ -1,53 +0,0 @@
-# WP_CLI\Utils\basename()
-
-Locale-independent version of basename()
-
-***
-
-## Usage
-
- WP_CLI\Utils\basename( $path, $suffix = '' )
-
-
-$path (string)
-$suffix (string)
-@return (string)
-
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-esc-like.md b/internal-api/wp-cli-utils-esc-like.md
deleted file mode 100644
index a7df1777..00000000
--- a/internal-api/wp-cli-utils-esc-like.md
+++ /dev/null
@@ -1,61 +0,0 @@
-# WP_CLI\Utils\esc_like()
-
-First half of escaping for LIKE special characters % and _ before preparing for MySQL.
-
-***
-
-## Usage
-
- WP_CLI\Utils\esc_like( $text )
-
-
-$text (string) The raw text to be escaped. The input typed by the user should have no
extra or deleted slashes.
-@return (string) in the form of a LIKE phrase. The output is not SQL safe. Call $wpdb::prepare()<br /> or real_escape next.
-
-
-
-***
-
-## Notes
-
-Use this only before wpdb::prepare() or esc_sql(). Reversing the order is very bad for security.
-
-Copied from core "wp-includes/wp-db.php". Avoids dependency on WP 4.4 wpdb.
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-format-items.md b/internal-api/wp-cli-utils-format-items.md
deleted file mode 100644
index 8efc5798..00000000
--- a/internal-api/wp-cli-utils-format-items.md
+++ /dev/null
@@ -1,101 +0,0 @@
-# WP_CLI\Utils\format_items()
-
-Render a collection of items as an ASCII table, JSON, CSV, YAML, list of ids, or count.
-
-***
-
-## Usage
-
- WP_CLI\Utils\format_items( $format, $items, $fields )
-
-
-$format (string) Format to use: 'table', 'json', 'csv', 'yaml', 'ids', 'count'.
-$items (array<mixed>) An array of items to output.
-$fields (array<string>|string) Named fields for each item of data. Can be array or comma-separated list.
-
-
-
-***
-
-## Notes
-
-Given a collection of items with a consistent data structure:
-
-```
-$items = array(
- array(
- 'key' => 'foo',
- 'value' => 'bar',
- )
-);
-```
-
-Render `$items` as an ASCII table:
-
-```
-WP_CLI\Utils\format_items( 'table', $items, array( 'key', 'value' ) );
-
-# +-----+-------+
-# | key | value |
-# +-----+-------+
-# | foo | bar |
-# +-----+-------+
-```
-
-Or render `$items` as YAML:
-
-```
-WP_CLI\Utils\format_items( 'yaml', $items, array( 'key', 'value' ) );
-
-# ---
-# -
-# key: foo
-# value: bar
-```
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-get-flag-value.md b/internal-api/wp-cli-utils-get-flag-value.md
deleted file mode 100644
index 1c56275a..00000000
--- a/internal-api/wp-cli-utils-get-flag-value.md
+++ /dev/null
@@ -1,63 +0,0 @@
-# WP_CLI\Utils\get_flag_value()
-
-Return the flag value or, if it's not set, the $default value.
-
-***
-
-## Usage
-
- WP_CLI\Utils\get_flag_value( $assoc_args, $flag, $default = null )
-
-
-$assoc_args (array<string|int,string|bool>) Arguments array.
-$flag (string|int) Flag to get the value.
-$default (string|bool|int|null) Default value for the flag. Default: NULL.
-@return (string|bool|int|null)
-
-
-
-***
-
-## Notes
-
-Because flags can be negated (e.g. --no-quiet to negate --quiet), this
-function provides a safer alternative to using
-`isset( $assoc_args['quiet'] )` or similar.
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-get-home-dir.md b/internal-api/wp-cli-utils-get-home-dir.md
deleted file mode 100644
index 43baf242..00000000
--- a/internal-api/wp-cli-utils-get-home-dir.md
+++ /dev/null
@@ -1,45 +0,0 @@
-# WP_CLI\Utils\get_home_dir()
-
-Get the home directory.
-
-***
-
-## Usage
-
- WP_CLI\Utils\get_home_dir()
-
-
-@return (string)
-
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-get-named-sem-ver.md b/internal-api/wp-cli-utils-get-named-sem-ver.md
deleted file mode 100644
index fb7053f4..00000000
--- a/internal-api/wp-cli-utils-get-named-sem-ver.md
+++ /dev/null
@@ -1,53 +0,0 @@
-# WP_CLI\Utils\get_named_sem_ver()
-
-Compare two version strings to get the named semantic version.
-
-***
-
-## Usage
-
- WP_CLI\Utils\get_named_sem_ver( $new_version, $original_version )
-
-
-$new_version (string)
-$original_version (string)
-@return (string) 'minor', 'patch'
-
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-get-php-binary.md b/internal-api/wp-cli-utils-get-php-binary.md
deleted file mode 100644
index a16dc3b6..00000000
--- a/internal-api/wp-cli-utils-get-php-binary.md
+++ /dev/null
@@ -1,52 +0,0 @@
-# WP_CLI\Utils\get_php_binary()
-
-Get the path to the PHP binary used when executing WP-CLI.
-
-***
-
-## Usage
-
- WP_CLI\Utils\get_php_binary()
-
-
-@return (string)
-
-
-
-***
-
-## Notes
-
-Environment values permit specific binaries to be indicated.
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-get-temp-dir.md b/internal-api/wp-cli-utils-get-temp-dir.md
deleted file mode 100644
index 38f05cce..00000000
--- a/internal-api/wp-cli-utils-get-temp-dir.md
+++ /dev/null
@@ -1,45 +0,0 @@
-# WP_CLI\Utils\get_temp_dir()
-
-Get the system's temp directory. Warns user if it isn't writable.
-
-***
-
-## Usage
-
- WP_CLI\Utils\get_temp_dir()
-
-
-@return (string)
-
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-http-request.md b/internal-api/wp-cli-utils-http-request.md
deleted file mode 100644
index 44909c53..00000000
--- a/internal-api/wp-cli-utils-http-request.md
+++ /dev/null
@@ -1,72 +0,0 @@
-# WP_CLI\Utils\http_request()
-
-Make a HTTP request to a remote URL.
-
-***
-
-## Usage
-
- WP_CLI\Utils\http_request( $method, $url, $data = null, $headers = [], $options = [] )
-
-
-$method (string) HTTP method (GET, POST, DELETE, etc.).
-$url (string) URL to make the HTTP request to.
-$data (array|null) Data to send either as a query string for GET/HEAD requests,
or in the body for POST requests.
-$headers (array) Add specific headers to the request.
-$options (array) {
Optional. An associative array of additional request options.
@type bool $halt_on_error Whether or not command execution should be halted on error. Default: true
@type bool|string $verify A boolean to use enable/disable SSL verification
or string absolute path to CA cert to use.
Defaults to detected CA cert bundled with the Requests library.
@type bool $insecure Whether to retry automatically without certificate validation.
}
-@return (\Requests_Response|Response)
-
-
-
-***
-
-## Notes
-
-Wraps the Requests HTTP library to ensure every request includes a cert.
-
-```
-# `wp core download` verifies the hash for a downloaded WordPress archive
-
-$md5_response = Utils\http_request( 'GET', $download_url . '.md5' );
-if ( 20 != substr( $md5_response->status_code, 0, 2 ) ) {
- WP_CLI::error( "Couldn't access md5 hash for release (HTTP code {$response->status_code})" );
-}
-```
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-ispiped.md b/internal-api/wp-cli-utils-ispiped.md
deleted file mode 100644
index 5249cc6d..00000000
--- a/internal-api/wp-cli-utils-ispiped.md
+++ /dev/null
@@ -1,74 +0,0 @@
-# WP_CLI\Utils\isPiped()
-
-Checks whether the output of the current script is a TTY or a pipe / redirect
-
-***
-
-## Usage
-
- WP_CLI\Utils\isPiped()
-
-
-@return (bool)
-
-
-
-***
-
-## Notes
-
-Returns `true` if `STDOUT` output is being redirected to a pipe or a file; `false` is
-output is being sent directly to the terminal.
-
-If an env variable `SHELL_PIPE` exists, the returned result depends on its
-value. Strings like `1`, `0`, `yes`, `no`, that validate to booleans are accepted.
-
-To enable ASCII formatting even when the shell is piped, use the
-ENV variable `SHELL_PIPE=0`.
-```
-SHELL_PIPE=0 wp plugin list | cat
-```
-
-Note that the db command forwards to the mysql client, which is unaware of the env
-variable. For db commands, pass the `--table` option instead.
-```
-wp db query --table "SELECT 1" | cat
-```
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-launch-editor-for-input.md b/internal-api/wp-cli-utils-launch-editor-for-input.md
deleted file mode 100644
index 1e71083b..00000000
--- a/internal-api/wp-cli-utils-launch-editor-for-input.md
+++ /dev/null
@@ -1,54 +0,0 @@
-# WP_CLI\Utils\launch_editor_for_input()
-
-Launch system's $EDITOR for the user to edit some text.
-
-***
-
-## Usage
-
- WP_CLI\Utils\launch_editor_for_input( $input, $title = WP-CLI, $ext = tmp )
-
-
-$input (string) Some form of text to edit (e.g. post content).
-$title (string) Title to display in the editor.
-$ext (string) Extension to use with the temp file.
-@return (string|bool) text, if file is saved from editor; false, if no change to file.
-
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-make-progress-bar.md b/internal-api/wp-cli-utils-make-progress-bar.md
deleted file mode 100644
index 32687e43..00000000
--- a/internal-api/wp-cli-utils-make-progress-bar.md
+++ /dev/null
@@ -1,86 +0,0 @@
-# WP_CLI\Utils\make_progress_bar()
-
-Create a progress bar to display percent completion of a given operation.
-
-***
-
-## Usage
-
- WP_CLI\Utils\make_progress_bar( $message, $count, $interval = 100 )
-
-
-$message (string) Text to display before the progress bar.
-$count (integer) Total number of ticks to be performed.
-$interval (int) Optional. The interval in milliseconds between updates. Default 100.
-@return (\cli\progress\Bar|\WP_CLI\NoOp)
-
-
-
-***
-
-## Notes
-
-Progress bar is written to STDOUT, and disabled when command is piped. Progress
-advances with `$progress->tick()`, and completes with `$progress->finish()`.
-Process bar also indicates elapsed time and expected total time.
-
-```
-# `wp user generate` ticks progress bar each time a new user is created.
-#
-# $ wp user generate --count=500
-# Generating users 22 % [=======> ] 0:05 / 0:23
-
-$progress = \WP_CLI\Utils\make_progress_bar( 'Generating users', $count );
-for ( $i = 0; $i < $count; $i++ ) {
- // uses wp_insert_user() to insert the user
- $progress->tick();
-}
-$progress->finish();
-```
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-normalize-path.md b/internal-api/wp-cli-utils-normalize-path.md
deleted file mode 100644
index f0a88103..00000000
--- a/internal-api/wp-cli-utils-normalize-path.md
+++ /dev/null
@@ -1,57 +0,0 @@
-# WP_CLI\Utils\normalize_path()
-
-Normalize a filesystem path.
-
-***
-
-## Usage
-
- WP_CLI\Utils\normalize_path( $path )
-
-
-$path (string) Path to normalize.
-@return (string) path.
-
-
-
-***
-
-## Notes
-
-On Windows systems, replaces backslashes with forward slashes
-and forces upper-case drive letters.
-Allows for two leading slashes for Windows network shares, but
-ensures that all other duplicate slashes are reduced to a single one.
-Ensures upper-case drive letters on Windows systems.
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-parse-ssh-url.md b/internal-api/wp-cli-utils-parse-ssh-url.md
deleted file mode 100644
index 866da588..00000000
--- a/internal-api/wp-cli-utils-parse-ssh-url.md
+++ /dev/null
@@ -1,64 +0,0 @@
-# WP_CLI\Utils\parse_ssh_url()
-
-Parse a SSH url for its host, port, and path.
-
-***
-
-## Usage
-
- WP_CLI\Utils\parse_ssh_url( $url, $component = -1 )
-
-
-$url (string)
-$component (int)
-@return (mixed)
-
-
-
-***
-
-## Notes
-
-Similar to parse_url(), but adds support for defined SSH aliases.
-
-```
-host OR host/path/to/wordpress OR host:port/path/to/wordpress
-```
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-parse-str-to-argv.md b/internal-api/wp-cli-utils-parse-str-to-argv.md
deleted file mode 100644
index b8abf5aa..00000000
--- a/internal-api/wp-cli-utils-parse-str-to-argv.md
+++ /dev/null
@@ -1,52 +0,0 @@
-# WP_CLI\Utils\parse_str_to_argv()
-
-Parse a string of command line arguments into an $argv-esqe variable.
-
-***
-
-## Usage
-
- WP_CLI\Utils\parse_str_to_argv( $arguments )
-
-
-$arguments (string)
-@return (array<string>)
-
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-proc-open-compat.md b/internal-api/wp-cli-utils-proc-open-compat.md
deleted file mode 100644
index b65723f5..00000000
--- a/internal-api/wp-cli-utils-proc-open-compat.md
+++ /dev/null
@@ -1,58 +0,0 @@
-# WP_CLI\Utils\proc_open_compat()
-
-Windows compatible `proc_open()`. Works around bug in PHP, and also deals with *nix-like `ENV_VAR=blah cmd` environment variable prefixes.
-
-***
-
-## Usage
-
- WP_CLI\Utils\proc_open_compat( $cmd, $descriptorspec, $pipes, $cwd = null, $env = null, $other_options = null )
-
-
-$cmd (string) Command to execute.
-list<string>|resource> (array<int,) $descriptorspec Indexed array of descriptor numbers and their values.
-resource> (array<int,) &$pipes Indexed array of file pointers that correspond to PHP's end of any pipes that are created.
-$cwd (string) Initial working directory for the command.
-string> (array<string,) $env Array of environment variables.
-$other_options (array<string>) Array of additional options (Windows only).
-array<int, (@param-out) resource> $pipes
-@return (resource|false) stripped of any environment variable settings, or false on failure.
-
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-report-batch-operation-results.md b/internal-api/wp-cli-utils-report-batch-operation-results.md
deleted file mode 100644
index f3c66a45..00000000
--- a/internal-api/wp-cli-utils-report-batch-operation-results.md
+++ /dev/null
@@ -1,57 +0,0 @@
-# WP_CLI\Utils\report_batch_operation_results()
-
-Report the results of the same operation against multiple resources.
-
-***
-
-## Usage
-
- WP_CLI\Utils\report_batch_operation_results( $noun, $verb, $total, $successes, $failures, $skips = null )
-
-
-$noun (string) Resource being affected (e.g. plugin).
-$verb (string) Type of action happening to the noun (e.g. activate).
-$total (integer) Total number of resource being affected.
-$successes (integer) Number of successful operations.
-$failures (integer) Number of failures.
-$skips (null|integer) Optional. Number of skipped operations. Default null (don't show skips).
-@return (void)
-
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-trailingslashit.md b/internal-api/wp-cli-utils-trailingslashit.md
deleted file mode 100644
index 0e2a2c0e..00000000
--- a/internal-api/wp-cli-utils-trailingslashit.md
+++ /dev/null
@@ -1,46 +0,0 @@
-# WP_CLI\Utils\trailingslashit()
-
-Appends a trailing slash.
-
-***
-
-## Usage
-
- WP_CLI\Utils\trailingslashit( $string )
-
-
-$string (string) What to add the trailing slash to.
-@return (string) with trailing slash added.
-
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-utils-write-csv.md b/internal-api/wp-cli-utils-write-csv.md
deleted file mode 100644
index ef8137bb..00000000
--- a/internal-api/wp-cli-utils-write-csv.md
+++ /dev/null
@@ -1,53 +0,0 @@
-# WP_CLI\Utils\write_csv()
-
-Write data as CSV to a given file.
-
-***
-
-## Usage
-
- WP_CLI\Utils\write_csv( $fd, $rows, $headers = [] )
-
-
-$fd (resource) File descriptor.
-$rows (array<string[]>|iterable) Array of rows to output.
-$headers (array<string>) List of CSV columns (optional).
-
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-
diff --git a/internal-api/wp-cli-warning.md b/internal-api/wp-cli-warning.md
deleted file mode 100644
index 60f31674..00000000
--- a/internal-api/wp-cli-warning.md
+++ /dev/null
@@ -1,81 +0,0 @@
-# WP_CLI::warning()
-
-Display warning message prefixed with "Warning: ".
-
-***
-
-## Usage
-
- WP_CLI::warning( $message )
-
-
-$message (string|WP_Error|Exception|Throwable) Message to write to STDERR.
-@return (void)
-
-
-
-***
-
-## Notes
-
-Warning message is written to STDERR, or discarded when `--quiet` flag is supplied.
-
-Use instead of `WP_CLI::debug()` when script execution should be permitted
-to continue.
-
-```
-# `wp plugin activate` skips activation when plugin is network active.
-$status = $this->get_status( $plugin->file );
-// Network-active is the highest level of activation status
-if ( 'active-network' === $status ) {
- WP_CLI::warning( "Plugin '{$plugin->name}' is already network active." );
- continue;
-}
-```
-
-
-*Internal API documentation is generated from the WP-CLI codebase on every release. To suggest improvements, please submit a pull request.*
-
-
-***
-
-## Related
-
-
-
-