Coding Standards: Use strict comparison in `wp-includes/class-wp-image-editor-imagick.php`.

Follow-up to [22094].

Props aristath, poena, afercia, SergeyBiryukov.
See #60700.
Built from https://develop.svn.wordpress.org/trunk@57934


git-svn-id: http://core.svn.wordpress.org/trunk@57435 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2024-04-06 13:37:18 +00:00
parent a7f59e981f
commit 46676b4060
2 changed files with 2 additions and 2 deletions

View File

@ -342,7 +342,7 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
* @return true|WP_Error
*/
public function resize( $max_w, $max_h, $crop = false ) {
if ( ( $this->size['width'] == $max_w ) && ( $this->size['height'] == $max_h ) ) {
if ( ( $this->size['width'] === $max_w ) && ( $this->size['height'] === $max_h ) ) {
return true;
}

View File

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