Make WordPress Core


Ignore:
Timestamp:
06/20/2020 11:16:12 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Docs: Remove an empty line between @param and @return tags, per the documentation standards.

See #49572.

File:
1 edited

Legend:

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

    r47923 r48102  
    716716 * Recursively computes the intersection of arrays using keys for comparison.
    717717 *
     718 * @since 5.3.0
     719 *
    718720 * @param  array $array1 The array with master keys to check.
    719721 * @param  array $array2 An array to compare keys against.
    720  *
    721  * @return array An associative array containing all the entries of array1 which have keys that are present in all arguments.
     722 * @return array An associative array containing all the entries of array1 which have keys
     723 *               that are present in all arguments.
    722724 */
    723725function _rest_array_intersect_key_recursive( $array1, $array2 ) {
     
    739741 * @param WP_REST_Server   $server   ResponseHandler instance (usually WP_REST_Server).
    740742 * @param WP_REST_Request  $request  The request that was used to make current response.
    741  *
    742743 * @return WP_REST_Response Response to be served, trimmed down to contain a subset of fields.
    743744 */
Note: See TracChangeset for help on using the changeset viewer.