Make WordPress Core


Ignore:
Timestamp:
09/09/2021 06:35:34 PM (3 years ago)
Author:
hellofromTonya
Message:

Code Modernization: Fix parameter name mismatches for parent/child classes in WP_REST_Controller::prepare_item_for_response().

In each child and grandchild class, renames the first parameter to match the parent's method signature.

Why? PHP 8 introduces the ability to pass named arguments to function/method calls. This means the child and parent method signatures (i.e. parameter names) need to match.

Changes for readability:

  • @since clearly specifies the original parameter name and its new name as well as why the change happened.
  • In methods longer than a single line, the generic parameter is reassigned to the original parameter restoring it for context for use within the method. An inline comment is added to explain why this reassignment is made.

Follow-up to [38832], [39011], [39015], [39021], [39024], [39025], [39031], [39036], [43519], [43735], [43739], [43768], [46821], [48173], [48242], [49088], [50995], [51003], [51021].

Props jrf, hellofromTonya, sergeybiryukov, azaozz, desrosj, johnbillion.
See #51553.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php

    r51298 r51786  
    397397     *
    398398     * @since 5.0.0
    399      *
    400      * @param WP_Post         $post    Post revision object.
     399     * @since 5.9.0 Renamed `$post` to `$item` to match parent class for PHP 8 named parameter support.
     400     *
     401     * @param WP_Post         $item    Post revision object.
    401402     * @param WP_REST_Request $request Request object.
    402403     * @return WP_REST_Response Response object.
    403404     */
    404     public function prepare_item_for_response( $post, $request ) {
    405 
     405    public function prepare_item_for_response( $item, $request ) {
     406        // Restores the more descriptive, specific name for use within this method.
     407        $post     = $item;
    406408        $response = $this->revisions_controller->prepare_item_for_response( $post, $request );
    407409
Note: See TracChangeset for help on using the changeset viewer.