Commit f9b61add0e for wordpress.org
commit f9b61add0e7d888b4dfd50d81baad53395c7b1bb
Author: Sergey Biryukov <sergeybiryukov.ru@gmail.com>
Date: Sun Feb 8 17:23:43 2026 +0000
Docs: Remove `@return void` from Abilities API DocBlocks.
Per the documentation standards, it should not be used outside of the default bundled themes.
Follow-up to [55725], [56943], [61063], [61069].
See #64224.
Built from https://develop.svn.wordpress.org/trunk@61599
git-svn-id: http://core.svn.wordpress.org/trunk@60910 1a063a9b-81f0-0310-95a4-ce76da25c4cd
diff --git a/wp-includes/abilities.php b/wp-includes/abilities.php
index af88f6fe85..4c6db1ed83 100644
--- a/wp-includes/abilities.php
+++ b/wp-includes/abilities.php
@@ -13,8 +13,6 @@ declare( strict_types = 1 );
* Registers the core ability categories.
*
* @since 6.9.0
- *
- * @return void
*/
function wp_register_core_ability_categories(): void {
wp_register_ability_category(
@@ -40,8 +38,6 @@ function wp_register_core_ability_categories(): void {
* @since 6.9.0
*
* @global wpdb $wpdb WordPress database abstraction object.
- *
- * @return void
*/
function wp_register_core_abilities(): void {
$category_site = 'site';
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 34dfd802b8..6033270417 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
-$wp_version = '7.0-alpha-61598';
+$wp_version = '7.0-alpha-61599';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.