From 530493396b324f5bed518a494e2843e7fdb020f1 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 21 Oct 2020 14:53:17 +0000 Subject: [PATCH] Docs: Add a `@since` note about `async_direct_test` key to the `site_status_tests` filter. Follow-up to [49232]. See #51547. git-svn-id: https://develop.svn.wordpress.org/trunk@49266 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/class-wp-site-health.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/wp-admin/includes/class-wp-site-health.php b/src/wp-admin/includes/class-wp-site-health.php index e036113837..2e556f40a8 100644 --- a/src/wp-admin/includes/class-wp-site-health.php +++ b/src/wp-admin/includes/class-wp-site-health.php @@ -2202,6 +2202,7 @@ class WP_Site_Health { * to complete should run asynchronously, to avoid extended loading periods within wp-admin. * * @since 5.2.0 + * @since 5.6.0 Added the `async_direct_test` array key. * * @param array $test_type { * An associative array, where the `$test_type` is either `direct` or @@ -2212,13 +2213,13 @@ class WP_Site_Health { * Plugins and themes are encouraged to prefix test identifiers with their slug * to avoid any collisions between tests. * - * @type string $label A friendly label for your test to identify it by. - * @type mixed $test A callable to perform a direct test, or a string AJAX action to be - * called to perform an async test. - * @type boolean $has_rest Optional. Denote if `$test` has a REST API endpoint. - * @type callable $async_direct_test A manner of directly calling the test marked as asynchronous, as - * the scheduled event can not authenticate, and endpoints may require - * authentication. + * @type string $label A friendly label for your test to identify it by. + * @type mixed $test A callable to perform a direct test, or a string AJAX action + * to be called to perform an async test. + * @type boolean $has_rest Optional. Denote if `$test` has a REST API endpoint. + * @type callable $async_direct_test A manner of directly calling the test marked as asynchronous, + * as the scheduled event can not authenticate, and endpoints + * may require authentication. * } * } */