Commit 4c90656a87 for wordpress.org

commit 4c90656a8714650f1c065fa3d1b3db7f3b6343d8
Author: westonruter <westonruter@git.wordpress.org>
Date:   Mon Sep 21 21:50:48 2026 +0000

    Build/Test Tools: Update PHPStan to 2.2.14.

    The release improves how conditional expressions are propagated through derived assignments and through overlapping ternary arms, so four `variable.undefined` errors drop out of the baseline: the three occurrences of `$metakey` in `add_meta()`, where the enclosing condition already guarantees that one of the two assignments has run, and `$token_length` in `WP_HTML_Decoder::attribute_starts_with()`, which is written by reference by `read_character_reference()` in the ternary arm selected by the subsequent null check.

    The baselines are regenerated for the new version, with `tests/phpstan/baselines/variable.undefined.neon` the only one that changed. The release also carries a batch of performance improvements, continuing the trend noted in r63510.

    Developed in https://github.com/WordPress/wordpress-develop/pull/13645.
    Follow-up to r63019, r63510.

    See #65817.

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


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

diff --git a/wp-includes/version.php b/wp-includes/version.php
index 451dd1c558..2ba4008f9d 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.2-alpha-63786';
+$wp_version = '7.2-alpha-63787';

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