Coding Standards: Apply changes from running composer format.

Follow up to [60684], [60743].

See #63840, #63863.
Built from https://develop.svn.wordpress.org/trunk@60764


git-svn-id: http://core.svn.wordpress.org/trunk@60100 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj
2025-09-16 00:09:20 +00:00
parent dea90ad8b7
commit 084100de18
3 changed files with 4 additions and 4 deletions

View File

@@ -490,8 +490,8 @@ class WP_Block {
}
$this->set_bookmark( '_wp_block_bindings_tag_closer' );
$tag_closer = $this->bookmarks['__wp_block_bindings_tag_closer'];
$end = $tag_closer->start;
$tag_closer = $this->bookmarks['__wp_block_bindings_tag_closer'];
$end = $tag_closer->start;
$this->release_bookmark( '_wp_block_bindings_tag_closer' );
$this->lexical_updates[] = new WP_HTML_Text_Replacement(

View File

@@ -79,7 +79,7 @@ function _wp_is_valid_utf8_fallback( string $bytes ): bool {
// Valid two-byte code points.
if ( $b1 >= 0xC2 && $b1 <= 0xDF && $b2 >= 0x80 && $b2 <= 0xBF ) {
$i++;
++$i;
continue;
}

View File

@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.9-alpha-60763';
$wp_version = '6.9-alpha-60764';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.