Make WordPress Core


Ignore:
Timestamp:
09/07/2021 07:23:00 PM (3 years ago)
Author:
hellofromTonya
Message:

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

Matches the method signatures of the parent class and each child class.

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.

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 [32644], [32664], [32798], [38489], [49183], [49197].

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php

    r51735 r51737  
    669669     *
    670670     * @since 4.3.0
    671      *
    672      * @param array  $blog        Site being acted upon.
     671     * @since 5.9.0 Renamed `$blog` to `$item` to match parent class for PHP 8 named parameter support.
     672     *
     673     * @param array  $item        Site being acted upon.
    673674     * @param string $column_name Current column name.
    674675     * @param string $primary     Primary column name.
     
    676677     *                if the current column is not the primary column.
    677678     */
    678     protected function handle_row_actions( $blog, $column_name, $primary ) {
     679    protected function handle_row_actions( $item, $column_name, $primary ) {
    679680        if ( $primary !== $column_name ) {
    680681            return '';
    681682        }
    682683
     684        // Restores the more descriptive, specific name for use within this method.
     685        $blog     = $item;
    683686        $blogname = untrailingslashit( $blog['domain'] . $blog['path'] );
    684687
Note: See TracChangeset for help on using the changeset viewer.