Skip to content

Commit c01d627

Browse files
committed
Coding Standards: Apply changes from running composer format.
Follow up to [60684], [60743]. See #63840, #63863. git-svn-id: https://develop.svn.wordpress.org/trunk@60764 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 5d007cc commit c01d627

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/wp-includes/class-wp-block.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -490,8 +490,8 @@ public function replace_rich_text( $rich_text ) {
490490
}
491491

492492
$this->set_bookmark( '_wp_block_bindings_tag_closer' );
493-
$tag_closer = $this->bookmarks['__wp_block_bindings_tag_closer'];
494-
$end = $tag_closer->start;
493+
$tag_closer = $this->bookmarks['__wp_block_bindings_tag_closer'];
494+
$end = $tag_closer->start;
495495
$this->release_bookmark( '_wp_block_bindings_tag_closer' );
496496

497497
$this->lexical_updates[] = new WP_HTML_Text_Replacement(

src/wp-includes/compat-utf8.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function _wp_is_valid_utf8_fallback( string $bytes ): bool {
7979
// Valid two-byte code points.
8080

8181
if ( $b1 >= 0xC2 && $b1 <= 0xDF && $b2 >= 0x80 && $b2 <= 0xBF ) {
82-
$i++;
82+
++$i;
8383
continue;
8484
}
8585

0 commit comments

Comments
 (0)