Make WordPress Core

Changeset 58071


Ignore:
Timestamp:
05/01/2024 11:42:24 PM (9 months ago)
Author:
johnbillion
Message:

Docs: Correct some docblock indentation.

See #60699

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-site-health.php

    r57926 r58071  
    33263326     *
    33273327     * @return WP_Error|array {
    3328      *    Page cache detail or else a WP_Error if unable to determine.
    3329      *
    3330      *    @type string   $status                 Page cache status. Good, Recommended or Critical.
    3331      *    @type bool     $advanced_cache_present Whether page cache plugin is available or not.
    3332      *    @type string[] $headers                Client caching response headers detected.
    3333      *    @type float    $response_time          Response time of site.
     3328     *     Page cache detail or else a WP_Error if unable to determine.
     3329     *
     3330     *     @type string   $status                 Page cache status. Good, Recommended or Critical.
     3331     *     @type bool     $advanced_cache_present Whether page cache plugin is available or not.
     3332     *     @type string[] $headers                Client caching response headers detected.
     3333     *     @type float    $response_time          Response time of site.
    33343334     * }
    33353335     */
  • trunk/src/wp-includes/block-template-utils.php

    r58042 r58071  
    250250 * @param string $slug          Template slug.
    251251 * @return array|null {
    252  *    Array with template metadata if $template_type is one of 'wp_template' or 'wp_template_part',
    253  *    null otherwise.
    254  *
    255  *    @type string   $slug      Template slug.
    256  *    @type string   $path      Template file path.
    257  *    @type string   $theme     Theme slug.
    258  *    @type string   $type      Template type.
    259  *    @type string   $area      Template area. Only for 'wp_template_part'.
    260  *    @type string   $title     Optional. Template title.
    261  *    @type string[] $postTypes Optional. List of post types that the template supports. Only for 'wp_template'.
     252 *     Array with template metadata if $template_type is one of 'wp_template' or 'wp_template_part',
     253 *     null otherwise.
     254 *
     255 *     @type string   $slug      Template slug.
     256 *     @type string   $path      Template file path.
     257 *     @type string   $theme     Theme slug.
     258 *     @type string   $type      Template type.
     259 *     @type string   $area      Template area. Only for 'wp_template_part'.
     260 *     @type string   $title     Optional. Template title.
     261 *     @type string[] $postTypes Optional. List of post types that the template supports. Only for 'wp_template'.
    262262 * }
    263263 */
  • trunk/src/wp-includes/user.php

    r57711 r58071  
    32563256     *     @type string $headers The headers of the email.
    32573257     * }
    3258      * @type string  $key        The activation key.
    3259      * @type string  $user_login The username for the user.
    3260      * @type WP_User $user_data  WP_User object.
     3258     * @param string  $key        The activation key.
     3259     * @param string  $user_login The username for the user.
     3260     * @param WP_User $user_data  WP_User object.
    32613261     */
    32623262    $notification_email = apply_filters( 'retrieve_password_notification_email', $defaults, $key, $user_login, $user_data );
Note: See TracChangeset for help on using the changeset viewer.