Commit 0b323a333b for wordpress.org

commit 0b323a333b15edb11dd29012bf5f43d21208ed5f
Author: westonruter <westonruter@git.wordpress.org>
Date:   Sat Sep 26 04:08:47 2026 +0000

    Build/Test Tools: Ignore core's own `@internal` usage in PHPStan.

    In core, `@internal` is advisory for extenders, but with bleedingEdge enabled PHPStan reports every use of such a symbol outside its declaring class or file, since core lives in the global namespace. An `ignoreErrors` entry now suppresses these reports for core's own symbols, while uses of `@internal` symbols from third-party libraries are still reported. This suppresses 95 errors at rule level 0 and 119 at level 10.

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

    See #65817.

    Built from https://develop.svn.wordpress.org/trunk@63942


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

diff --git a/wp-includes/version.php b/wp-includes/version.php
index 3b9bd6fdd0..e113d26faa 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.2-alpha-63941';
+$wp_version = '7.2-alpha-63942';

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