Skip to content

Commit c04f96c

Browse files
committed
Generate stubs for WordPress 6.7.2
1 parent 27f32fa commit c04f96c

File tree

3 files changed

+4
-13
lines changed

3 files changed

+4
-13
lines changed

finder.php

-7
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,4 @@
4545
//->notPath('wp-includes/theme-compat/footer.php')
4646
//->notPath('wp-includes/theme-compat/header.php')
4747
//->notPath('wp-includes/theme-compat/sidebar.php')
48-
/*
49-
->notPath('wp-includes/SimplePie')
50-
->notPath('wp-includes/class-simplepie.php')
51-
->notPath('wp-includes/class-wp-feed-cache.php')
52-
->notPath('wp-includes/class-wp-simplepie-file.php')
53-
->notPath('wp-includes/class-wp-simplepie-sanitize-kses.php')
54-
*/
5548
->sortByName();

source/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"ext-mbstring": "*",
88
"ext-openssl": "*",
99
"ext-sodium": "*",
10-
"johnpbloch/wordpress": "6.7.1"
10+
"johnpbloch/wordpress": "6.7.2"
1111
},
1212
"minimum-stability": "stable",
1313
"config": {

wordpress-stubs.php

+3-5
Original file line numberDiff line numberDiff line change
@@ -65957,18 +65957,16 @@ public function next_tag($query = \null) : bool
6595765957
{
6595865958
}
6595965959
/**
65960-
* Ensures internal accounting is maintained for HTML semantic rules while
65961-
* the underlying Tag Processor class is seeking to a bookmark.
65960+
* Finds the next token in the HTML document.
6596265961
*
6596365962
* This doesn't currently have a way to represent non-tags and doesn't process
6596465963
* semantic rules for text nodes. For access to the raw tokens consider using
6596565964
* WP_HTML_Tag_Processor instead.
6596665965
*
6596765966
* @since 6.5.0 Added for internal support; do not use.
65967+
* @since 6.7.2 Refactored so subclasses may extend.
6596865968
*
65969-
* @access private
65970-
*
65971-
* @return bool
65969+
* @return bool Whether a token was parsed.
6597265970
*/
6597365971
public function next_token() : bool
6597465972
{

0 commit comments

Comments
 (0)