From 3d2cd19b4ffd9a5df45a9a90c29299b522137783 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 22 Jul 2020 00:27:36 +0000 Subject: [PATCH] Docs: Correct type for the `$theme` parameter of `theme_auto_update_debug_string` filter. Follow-up to [48546], [48549], [48552]. See #50663. git-svn-id: https://develop.svn.wordpress.org/trunk@48561 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/class-wp-debug-data.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-admin/includes/class-wp-debug-data.php b/src/wp-admin/includes/class-wp-debug-data.php index 743a4e4948..82a5b068c9 100644 --- a/src/wp-admin/includes/class-wp-debug-data.php +++ b/src/wp-admin/includes/class-wp-debug-data.php @@ -1078,9 +1078,9 @@ class WP_Debug_Data { * * @since 5.5.0 * - * @param string $auto_updates_string The string output for the auto-updates column. - * @param object $theme An object of theme data. - * @param bool $enabled Whether auto-updates are enabled for this item. + * @param string $auto_updates_string The string output for the auto-updates column. + * @param WP_Theme $theme An object of theme data. + * @param bool $enabled Whether auto-updates are enabled for this item. */ $auto_updates_string = apply_filters( 'theme_auto_update_debug_string', $auto_updates_string, $active_theme, $enabled ); } else {