Make WordPress Core


Ignore:
Timestamp:
08/17/2026 01:13:55 PM (6 weeks ago)
Author:
SergeyBiryukov
Message:

Docs: Remove a blank line between @param and @return in core docblocks.

The ​PHP inline documentation standards place @return immediately after the last @param tag, with no blank line between them:

/**
 * Summary.
 *
 * @since x.x.x
 *
 * @param string $var Description.
 * @return string Description.
 */

This corrects 44 docblocks across 33 files in src/wp-includes that used a line break between the two tags.

Developed in ​https://github.com/WordPress/wordpress-develop/pull/13063.

Props mukesh27, dhruvang21.
See #65818, #65860.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rest-api.php

    r62769 r63320  
    34593459 *
    34603460 * @param WP_Error $error WP_Error instance.
    3461  *
    34623461 * @return WP_REST_Response List of associative arrays with code and message keys.
    34633462 */
Note: See TracChangeset for help on using the changeset viewer.