diff --git a/src/wp-admin/includes/update.php b/src/wp-admin/includes/update.php
index 29a5f0c783..0eae1130f8 100644
a
|
b
|
function wp_plugin_update_row( $file, $plugin_data ) { |
574 | 574 | * @type string $author_name Plugin author's name. |
575 | 575 | * @type bool $update Whether there's an available update. Default null. |
576 | 576 | * } |
577 | | * @param object $response { |
578 | | * An object of metadata about the available plugin update. |
| 577 | * @param array $response { |
| 578 | * An array of metadata about the available plugin update. |
579 | 579 | * |
580 | 580 | * @type int $id Plugin ID. |
581 | 581 | * @type string $slug Plugin slug. |
582 | | * @type string $new_version New plugin version. |
| 582 | * @type string $plugin Plugin basename. |
583 | 583 | * @type string $url Plugin URL. |
584 | 584 | * @type string $package Plugin update package URL. |
| 585 | * @type array $icons An array of icon URLs. |
| 586 | * @type array $banners An array of banner URLs. |
| 587 | * @type string $requires Required WordPress version. |
| 588 | * @type string $tested Higher WordPress version the plugin has been tested with. |
| 589 | * @type string $new_version New plugin version. |
585 | 590 | * } |
586 | 591 | */ |
587 | 592 | do_action( "in_plugin_update_message-{$file}", $plugin_data, $response ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |