Commit 949e18817b for wordpress.org

commit 949e18817bb86dabee1f150fd09620bf54cb8537
Author: SergeyBiryukov <sergeybiryukov@git.wordpress.org>
Date:   Tue Sep 15 23:27:47 2026 +0000

    Build/Test Tools: Use the null coalescing assignment operator in the test suite.

    Replaces the “assign a default only if not already set” guard blocks in the PHPUnit test suite, the shared test infrastructure and the PHPStan hook docblock helper with the null coalescing assignment operator (`??=`).

    Developed in https://github.com/WordPress/wordpress-develop/pull/13511.

    Props Soean, westonruter.
    See #65823.
    Built from https://develop.svn.wordpress.org/trunk@63633


    git-svn-id: http://core.svn.wordpress.org/trunk@62808 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-includes/version.php b/wp-includes/version.php
index 5d380971ae..f95c124969 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.2-alpha-63632';
+$wp_version = '7.2-alpha-63633';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.