diff --git a/wp-includes/pomo/streams.php b/wp-includes/pomo/streams.php index 4b920c3d06..2a4feb5f67 100644 --- a/wp-includes/pomo/streams.php +++ b/wp-includes/pomo/streams.php @@ -60,7 +60,7 @@ if ( ! class_exists( 'POMO_Reader', false ) ) : */ public function readint32() { $bytes = $this->read( 4 ); - if ( 4 != $this->strlen( $bytes ) ) { + if ( 4 !== $this->strlen( $bytes ) ) { return false; } $endian_letter = ( 'big' === $this->endian ) ? 'N' : 'V'; @@ -77,7 +77,7 @@ if ( ! class_exists( 'POMO_Reader', false ) ) : */ public function readint32array( $count ) { $bytes = $this->read( 4 * $count ); - if ( 4 * $count != $this->strlen( $bytes ) ) { + if ( 4 * $count !== $this->strlen( $bytes ) ) { return false; } $endian_letter = ( 'big' === $this->endian ) ? 'N' : 'V'; @@ -194,7 +194,7 @@ if ( ! class_exists( 'POMO_FileReader', false ) ) : * @return bool */ public function seekto( $pos ) { - if ( -1 == fseek( $this->_f, $pos, SEEK_SET ) ) { + if ( -1 === fseek( $this->_f, $pos, SEEK_SET ) ) { return false; } $this->_pos = $pos; diff --git a/wp-includes/version.php b/wp-includes/version.php index 0cd8a91bd9..64652cf141 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-55933'; +$wp_version = '6.3-alpha-55934'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.