@@ -63331,7 +63331,7 @@ public function __construct()
63331
63331
*
63332
63332
* Example:
63333
63333
*
63334
- * if ( $tags->next_tag( array( 'class ' => 'wp-group-block' ) ) ) {
63334
+ * if ( $tags->next_tag( array( 'class_name ' => 'wp-group-block' ) ) ) {
63335
63335
* $tags->set_attribute( 'title', 'This groups the contained content.' );
63336
63336
* $tags->remove_attribute( 'data-test-id' );
63337
63337
* }
@@ -64662,6 +64662,14 @@ public function __construct($bookmark_name, $node_name, $has_self_closing_flag,
64662
64662
public function __destruct()
64663
64663
{
64664
64664
}
64665
+ /**
64666
+ * Wakeup magic method.
64667
+ *
64668
+ * @since 6.4.2
64669
+ */
64670
+ public function __wakeup()
64671
+ {
64672
+ }
64665
64673
}
64666
64674
/**
64667
64675
* HTML API: WP_HTML_Unsupported_Exception class
@@ -89923,7 +89931,7 @@ function _register_remote_theme_patterns()
89923
89931
* @since 6.0.0
89924
89932
* @since 6.1.0 The `postTypes` property was added.
89925
89933
* @since 6.2.0 The `templateTypes` property was added.
89926
- * @since 6.4.0 Uses the `_wp_get_block_patterns` function .
89934
+ * @since 6.4.0 Uses the `WP_Theme::get_block_patterns` method .
89927
89935
* @access private
89928
89936
* @phpstan-return void
89929
89937
*/
@@ -119202,8 +119210,6 @@ function update_blog_option($id, $option, $value, $deprecated = \null)
119202
119210
* @global array $_wp_switched_stack
119203
119211
* @global bool $switched
119204
119212
* @global string $table_prefix
119205
- * @global string $wp_template_path
119206
- * @global string $wp_stylesheet_path
119207
119213
* @global WP_Object_Cache $wp_object_cache
119208
119214
*
119209
119215
* @param int $new_blog_id The ID of the blog to switch to. Default: current blog.
@@ -119224,8 +119230,6 @@ function switch_to_blog($new_blog_id, $deprecated = \null)
119224
119230
* @global int $blog_id
119225
119231
* @global bool $switched
119226
119232
* @global string $table_prefix
119227
- * @global string $wp_template_path
119228
- * @global string $wp_stylesheet_path
119229
119233
* @global WP_Object_Cache $wp_object_cache
119230
119234
*
119231
119235
* @return bool True on success, false if we're already on the current blog.
@@ -135031,8 +135035,7 @@ function get_stylesheet()
135031
135035
*
135032
135036
* @since 1.5.0
135033
135037
* @since 6.4.0 Memoizes filter execution so that it only runs once for the current theme.
135034
- *
135035
- * @global string $wp_stylesheet_path Current theme stylesheet directory path.
135038
+ * @since 6.4.2 Memoization removed.
135036
135039
*
135037
135040
* @return string Path to active theme's stylesheet directory.
135038
135041
*/
@@ -135101,8 +135104,7 @@ function get_template()
135101
135104
*
135102
135105
* @since 1.5.0
135103
135106
* @since 6.4.0 Memoizes filter execution so that it only runs once for the current theme.
135104
- *
135105
- * @global string $wp_template_path Current theme template directory path.
135107
+ * @since 6.4.1 Memoization removed.
135106
135108
*
135107
135109
* @return string Path to active theme's template directory.
135108
135110
*/
@@ -135230,8 +135232,6 @@ function locale_stylesheet()
135230
135232
* @global WP_Customize_Manager $wp_customize
135231
135233
* @global array $sidebars_widgets
135232
135234
* @global array $wp_registered_sidebars
135233
- * @global string $wp_stylesheet_path
135234
- * @global string $wp_template_path
135235
135235
*
135236
135236
* @param string $stylesheet Stylesheet name.
135237
135237
*/
0 commit comments