Coding Standards: Use strict comparison in `WP_List_Util::filter()`.

Correct comments per the documentation standards.

See #49542, #49572.
Built from https://develop.svn.wordpress.org/trunk@48421


git-svn-id: http://core.svn.wordpress.org/trunk@48190 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-07-10 12:46:09 +00:00
parent b03053eb2a
commit 3df6964fc8
2 changed files with 6 additions and 10 deletions

View File

@ -105,26 +105,22 @@ class WP_List_Util {
$matched = 0;
foreach ( $args as $m_key => $m_value ) {
if ( is_array( $obj ) ) {
// Treat object as an array
// Treat object as an array.
if ( array_key_exists( $m_key, $obj ) && ( $m_value == $obj[ $m_key ] ) ) {
$matched++;
}
} elseif ( is_object( $obj ) ) {
// Treat object as an object
// Treat object as an object.
if ( isset( $obj->{$m_key} ) && ( $m_value == $obj->{$m_key} ) ) {
$matched++;
}
}
}
if (
( 'AND' === $operator && $matched == $count ) ||
( 'OR' === $operator && $matched > 0 ) ||
( 'NOT' === $operator && 0 == $matched )
if ( ( 'AND' === $operator && $matched === $count )
|| ( 'OR' === $operator && $matched > 0 )
|| ( 'NOT' === $operator && 0 === $matched )
) {
$filtered[ $key ] = $obj;
}

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.5-beta1-48420';
$wp_version = '5.5-beta1-48421';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.