- Timestamp:
- 07/17/2024 12:51:34 AM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/html-api/class-wp-html-processor.php
r58714 r58742 242 242 * @since 6.6.0 243 243 * 244 * @var ?WP_HTML_Stack_Event244 * @var WP_HTML_Stack_Event|null 245 245 */ 246 246 private $current_element = null; … … 249 249 * Context node if created as a fragment parser. 250 250 * 251 * @var ?WP_HTML_Token251 * @var WP_HTML_Token|null 252 252 */ 253 253 private $context_node = null; … … 753 753 * SVG and MathML namespace. 754 754 * 755 * @param ?WP_HTML_Token $node Node to examine instead of current node, if provided. 756 * @return bool Whether to expect a closer for the currently-matched node, 757 * or `null` if not matched on any token. 755 * @param WP_HTML_Token|null $node Optional. Node to examine, if provided. 756 * Default is to examine current node. 757 * @return bool|null Whether to expect a closer for the currently-matched node, 758 * or `null` if not matched on any token. 758 759 */ 759 760 public function expects_closer( $node = null ) {
Note: See TracChangeset
for help on using the changeset viewer.