From 9183a5b35e6a9f67558239509eb2b3c1de3869d6 Mon Sep 17 00:00:00 2001 From: Dovid Levine Date: Wed, 30 Oct 2024 13:01:08 +0200 Subject: [PATCH] chore: fix invalid `@var` type for `WP_HTML_Processor_State::$context_node` --- src/wp-includes/html-api/class-wp-html-processor-state.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/html-api/class-wp-html-processor-state.php b/src/wp-includes/html-api/class-wp-html-processor-state.php index b7cdd347ca85b..63d531d8e7002 100644 --- a/src/wp-includes/html-api/class-wp-html-processor-state.php +++ b/src/wp-includes/html-api/class-wp-html-processor-state.php @@ -363,7 +363,7 @@ class WP_HTML_Processor_State { * * @see https://html.spec.whatwg.org/#concept-frag-parse-context * - * @var [string, array]|null + * @var array{string,array}|null */ public $context_node = null;