diff --git a/src/wp-admin/includes/post.php b/src/wp-admin/includes/post.php
index 8db8861c42..2a2452299b 100644
a
|
b
|
function get_block_editor_server_block_settings() { |
2209 | 2209 | /** |
2210 | 2210 | * Renders the meta boxes forms. |
2211 | 2211 | * |
| 2212 | * @global WP_Post $post The post to edit. |
| 2213 | * @global WP_Screen $current_screen WordPress current screen object. |
| 2214 | * @global array $wp_meta_boxes |
2212 | 2215 | * @since 5.0.0 |
2213 | 2216 | */ |
2214 | 2217 | function the_block_editor_meta_boxes() { |
diff --git a/src/wp-includes/block-template-utils.php b/src/wp-includes/block-template-utils.php
index 8ecb9dfe55..2f0e4f1cc6 100644
a
|
b
|
function wp_is_theme_directory_ignored( $path ) { |
1199 | 1199 | * |
1200 | 1200 | * @since 5.9.0 |
1201 | 1201 | * @since 6.0.0 Adds the whole theme to the export archive. |
| 1202 | * |
| 1203 | * @global string $wp_version The WordPress version string. |
1202 | 1204 | * |
1203 | 1205 | * @return WP_Error|string Path of the ZIP file or error on failure. |
1204 | 1206 | */ |
diff --git a/src/wp-includes/class-wp-oembed-controller.php b/src/wp-includes/class-wp-oembed-controller.php
index 22fceb54a9..ed26cd822d 100644
a
|
b
|
final class WP_oEmbed_Controller { |
161 | 161 | * |
162 | 162 | * @see WP_oEmbed::get_html() |
163 | 163 | * @global WP_Embed $wp_embed |
| 164 | * @global WP_Scripts $wp_scripts |
164 | 165 | * |
165 | 166 | * @param WP_REST_Request $request Full data about the request. |
166 | 167 | * @return object|WP_Error oEmbed response data or WP_Error on failure. |