diff -r be944660c56a -r 3d72ae0968f4 wp/wp-admin/includes/class-wp-links-list-table.php --- a/wp/wp-admin/includes/class-wp-links-list-table.php Wed Sep 21 18:19:35 2022 +0200 +++ b/wp/wp-admin/includes/class-wp-links-list-table.php Tue Sep 27 16:37:53 2022 +0200 @@ -166,10 +166,14 @@ * Handles the checkbox column output. * * @since 4.3.0 + * @since 5.9.0 Renamed `$link` to `$item` to match parent class for PHP 8 named parameter support. * - * @param object $link The current link object. + * @param object $item The current link object. */ - public function column_cb( $link ) { + public function column_cb( $item ) { + // Restores the more descriptive, specific name for use within this method. + $link = $item; + ?>