diff --git a/wp-includes/block-editor.php b/wp-includes/block-editor.php index 688ec27c09..c872ae84fd 100644 --- a/wp-includes/block-editor.php +++ b/wp-includes/block-editor.php @@ -533,8 +533,6 @@ function get_block_editor_settings( array $custom_settings, $block_editor_contex * * @param string[] $preload_paths List of paths to preload. * @param WP_Block_Editor_Context $block_editor_context The current block editor context. - * - * @return void */ function block_editor_rest_api_preload( array $preload_paths, $block_editor_context ) { global $post, $wp_scripts, $wp_styles; diff --git a/wp-includes/class-wp-customize-nav-menus.php b/wp-includes/class-wp-customize-nav-menus.php index 166800f222..ae0925fe02 100644 --- a/wp-includes/class-wp-customize-nav-menus.php +++ b/wp-includes/class-wp-customize-nav-menus.php @@ -1199,7 +1199,6 @@ final class WP_Customize_Nav_Menus { * @since 4.7.0 * * @param array $available_item_type Menu item data to output, including title, type, and label. - * @return void */ protected function print_post_type_container( $available_item_type ) { $id = sprintf( 'available-menu-items-%s-%s', $available_item_type['type'], $available_item_type['object'] ); @@ -1240,8 +1239,6 @@ final class WP_Customize_Nav_Menus { * Prints the markup for available menu item custom links. * * @since 4.7.0 - * - * @return void */ protected function print_custom_links_available_menu_item() { ?> diff --git a/wp-includes/pomo/translations.php b/wp-includes/pomo/translations.php index 0df56ad4fe..29ea11e45e 100644 --- a/wp-includes/pomo/translations.php +++ b/wp-includes/pomo/translations.php @@ -159,7 +159,6 @@ if ( ! class_exists( 'Translations', false ) ) : * Merge $other in the current object. * * @param Object $other Another Translation object, whose translations will be merged in this one (passed by reference). - * @return void */ public function merge_with( &$other ) { foreach ( $other->entries as $entry ) { diff --git a/wp-includes/script-loader.php b/wp-includes/script-loader.php index 6bdbc5c2f4..ae68e688f8 100644 --- a/wp-includes/script-loader.php +++ b/wp-includes/script-loader.php @@ -2933,7 +2933,6 @@ function wp_enqueue_block_support_styles( $style ) { * * @param string $block_name The block-name, including namespace. * @param array $args An array of arguments [handle,src,deps,ver,media]. - * @return void */ function wp_enqueue_block_style( $block_name, $args ) { $args = wp_parse_args( diff --git a/wp-includes/theme-templates.php b/wp-includes/theme-templates.php index e837a2fad5..16bd5e2d77 100644 --- a/wp-includes/theme-templates.php +++ b/wp-includes/theme-templates.php @@ -105,8 +105,6 @@ function wp_filter_wp_template_unique_post_slug( $override_slug, $slug, $post_ID * @since 5.8.0 * * @global string $_wp_current_template_content - * - * @return void */ function the_block_template_skip_link() { global $_wp_current_template_content; diff --git a/wp-includes/version.php b/wp-includes/version.php index 4048eca10d..bfef2ba631 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-beta3-53330'; +$wp_version = '6.0-beta3-53331'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.