From 70dedb086602287f4e0ee97fbf477adda8310963 Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Wed, 12 Oct 2022 13:41:43 +0000 Subject: [PATCH] Docs: Fix `$cache_headers` param type in `site_status_page_cache_supported_cache_headers`. Follow-up to [54043]. Props skithund. Fixes #56805. See #55646. git-svn-id: https://develop.svn.wordpress.org/trunk@54506 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/class-wp-site-health.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/class-wp-site-health.php b/src/wp-admin/includes/class-wp-site-health.php index 41b605c70c..abe0fc6184 100644 --- a/src/wp-admin/includes/class-wp-site-health.php +++ b/src/wp-admin/includes/class-wp-site-health.php @@ -3162,7 +3162,7 @@ class WP_Site_Health { * * @since 6.1.0 * - * @param int $cache_headers Array of supported cache headers. + * @param array $cache_headers Array of supported cache headers. */ return apply_filters( 'site_status_page_cache_supported_cache_headers', $cache_headers ); }