Docs: Correct some docblock indentation.

See #60699

Built from https://develop.svn.wordpress.org/trunk@58071


git-svn-id: http://core.svn.wordpress.org/trunk@57536 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2024-05-01 23:44:12 +00:00
parent fe416fd2f6
commit 1bbbb4bd75
4 changed files with 18 additions and 18 deletions

View File

@ -3325,12 +3325,12 @@ class WP_Site_Health {
* @since 6.1.0 * @since 6.1.0
* *
* @return WP_Error|array { * @return WP_Error|array {
* Page cache detail or else a WP_Error if unable to determine. * Page cache detail or else a WP_Error if unable to determine.
* *
* @type string $status Page cache status. Good, Recommended or Critical. * @type string $status Page cache status. Good, Recommended or Critical.
* @type bool $advanced_cache_present Whether page cache plugin is available or not. * @type bool $advanced_cache_present Whether page cache plugin is available or not.
* @type string[] $headers Client caching response headers detected. * @type string[] $headers Client caching response headers detected.
* @type float $response_time Response time of site. * @type float $response_time Response time of site.
* } * }
*/ */
private function get_page_cache_detail() { private function get_page_cache_detail() {

View File

@ -249,16 +249,16 @@ function _get_block_templates_paths( $base_directory ) {
* @param string $template_type Template type. Either 'wp_template' or 'wp_template_part'. * @param string $template_type Template type. Either 'wp_template' or 'wp_template_part'.
* @param string $slug Template slug. * @param string $slug Template slug.
* @return array|null { * @return array|null {
* Array with template metadata if $template_type is one of 'wp_template' or 'wp_template_part', * Array with template metadata if $template_type is one of 'wp_template' or 'wp_template_part',
* null otherwise. * null otherwise.
* *
* @type string $slug Template slug. * @type string $slug Template slug.
* @type string $path Template file path. * @type string $path Template file path.
* @type string $theme Theme slug. * @type string $theme Theme slug.
* @type string $type Template type. * @type string $type Template type.
* @type string $area Template area. Only for 'wp_template_part'. * @type string $area Template area. Only for 'wp_template_part'.
* @type string $title Optional. Template title. * @type string $title Optional. Template title.
* @type string[] $postTypes Optional. List of post types that the template supports. Only for 'wp_template'. * @type string[] $postTypes Optional. List of post types that the template supports. Only for 'wp_template'.
* } * }
*/ */
function _get_block_template_file( $template_type, $slug ) { function _get_block_template_file( $template_type, $slug ) {

View File

@ -3255,9 +3255,9 @@ function retrieve_password( $user_login = null ) {
* @type string $message The body of the email. * @type string $message The body of the email.
* @type string $headers The headers of the email. * @type string $headers The headers of the email.
* } * }
* @type string $key The activation key. * @param string $key The activation key.
* @type string $user_login The username for the user. * @param string $user_login The username for the user.
* @type WP_User $user_data WP_User object. * @param WP_User $user_data WP_User object.
*/ */
$notification_email = apply_filters( 'retrieve_password_notification_email', $defaults, $key, $user_login, $user_data ); $notification_email = apply_filters( 'retrieve_password_notification_email', $defaults, $key, $user_login, $user_data );

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.6-alpha-58070'; $wp_version = '6.6-alpha-58071';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.