mirror of
git://develop.git.wordpress.org/
synced 2025-04-05 04:33:18 +02:00
Code Modernization: Improve @since
message in WP_List_Table::column_default()
.
Improves the `@since` message to more clearly specify the reason for this change" for PHP 8 named parameter support. Follow-up to [51728]. Props jrf. See #51553. git-svn-id: https://develop.svn.wordpress.org/trunk@51734 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c6a9a598bb
commit
60876f2954
@ -1047,7 +1047,7 @@ class WP_Comments_List_Table extends WP_List_Table {
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 5.9.0 Renamed `$comment` to `$item` to match parent class for PHP 8 named param.
|
||||
* @since 5.9.0 Renamed `$comment` to `$item` to match parent class for PHP 8 named parameter support.
|
||||
*
|
||||
* @param WP_Comment $item The comment object.
|
||||
* @param string $column_name The custom column's name.
|
||||
|
@ -279,7 +279,7 @@ class WP_Links_List_Table extends WP_List_Table {
|
||||
* Handles the default column output.
|
||||
*
|
||||
* @since 4.3.0
|
||||
* @since 5.9.0 Renamed `$link` to `$item` to match parent class for PHP 8 named param.
|
||||
* @since 5.9.0 Renamed `$link` to `$item` to match parent class for PHP 8 named parameter support.
|
||||
*
|
||||
* @param object $item Link object.
|
||||
* @param string $column_name Current column name.
|
||||
|
@ -594,7 +594,7 @@ class WP_Media_List_Table extends WP_List_Table {
|
||||
* Handles output for the default column.
|
||||
*
|
||||
* @since 4.3.0
|
||||
* @since 5.9.0 Renamed `$post` to `$item` to match parent class for PHP 8 named param.
|
||||
* @since 5.9.0 Renamed `$post` to `$item` to match parent class for PHP 8 named parameter support.
|
||||
*
|
||||
* @param WP_Post $item The current WP_Post object.
|
||||
* @param string $column_name Current column name.
|
||||
|
@ -560,7 +560,7 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
|
||||
* Handles output for the default column.
|
||||
*
|
||||
* @since 4.3.0
|
||||
* @since 5.9.0 Renamed `$blog` to `$item` to match parent class for PHP 8 named param.
|
||||
* @since 5.9.0 Renamed `$blog` to `$item` to match parent class for PHP 8 named parameter support.
|
||||
*
|
||||
* @param array $item Current site.
|
||||
* @param string $column_name Current column name.
|
||||
|
@ -855,7 +855,7 @@ class WP_MS_Themes_List_Table extends WP_List_Table {
|
||||
* Handles default column output.
|
||||
*
|
||||
* @since 4.3.0
|
||||
* @since 5.9.0 Renamed `$theme` to `$item` to match parent class for PHP 8 named param.
|
||||
* @since 5.9.0 Renamed `$theme` to `$item` to match parent class for PHP 8 named parameter support.
|
||||
*
|
||||
* @param WP_Theme $item The current WP_Theme object.
|
||||
* @param string $column_name The current column name.
|
||||
|
@ -442,7 +442,7 @@ class WP_MS_Users_List_Table extends WP_List_Table {
|
||||
* Handles the default column output.
|
||||
*
|
||||
* @since 4.3.0
|
||||
* @since 5.9.0 Renamed `$user` to `$item` to match parent class for PHP 8 named param.
|
||||
* @since 5.9.0 Renamed `$user` to `$item` to match parent class for PHP 8 named parameter support.
|
||||
*
|
||||
* @param WP_User $item The current WP_User object.
|
||||
* @param string $column_name The current column name.
|
||||
|
@ -1235,7 +1235,7 @@ class WP_Posts_List_Table extends WP_List_Table {
|
||||
* Handles the default column output.
|
||||
*
|
||||
* @since 4.3.0
|
||||
* @since 5.9.0 Renamed `$post` to `$item` to match parent class for PHP 8 named param.
|
||||
* @since 5.9.0 Renamed `$post` to `$item` to match parent class for PHP 8 named parameter support.
|
||||
*
|
||||
* @param WP_Post $item The current WP_Post object.
|
||||
* @param string $column_name The current column name.
|
||||
|
@ -620,7 +620,7 @@ class WP_Terms_List_Table extends WP_List_Table {
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 5.9.0 Renamed `$tag` to `$item` to match parent class for PHP 8 named param.
|
||||
* @since 5.9.0 Renamed `$tag` to `$item` to match parent class for PHP 8 named parameter support.
|
||||
*
|
||||
* @param WP_Term $item Term object.
|
||||
* @param string $column_name Name of the column.
|
||||
|
Loading…
x
Reference in New Issue
Block a user