mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
Coding Standards: Use strict comparison where static strings are involved.
This reduces the number of `WordPress.PHP.StrictComparisons.LooseComparison` issues in half, from 1897 to 890. Includes minor code layout fixes for better readability. See #49542. git-svn-id: https://develop.svn.wordpress.org/trunk@47808 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -388,7 +388,7 @@ class WP_Comment_Query {
|
||||
*
|
||||
* The expected return type from this filter depends on the value passed in the request query_vars.
|
||||
* When `$this->query_vars['count']` is set, the filter should return the comment count as an int.
|
||||
* When `'ids' == $this->query_vars['fields']`, the filter should return an array of comment ids.
|
||||
* When `'ids' === $this->query_vars['fields']`, the filter should return an array of comment ids.
|
||||
* Otherwise the filter should return an array of WP_Comment objects.
|
||||
*
|
||||
* @since 5.3.0
|
||||
@@ -444,7 +444,7 @@ class WP_Comment_Query {
|
||||
|
||||
$comment_ids = array_map( 'intval', $comment_ids );
|
||||
|
||||
if ( 'ids' == $this->query_vars['fields'] ) {
|
||||
if ( 'ids' === $this->query_vars['fields'] ) {
|
||||
$this->comments = $comment_ids;
|
||||
return $this->comments;
|
||||
}
|
||||
@@ -570,7 +570,7 @@ class WP_Comment_Query {
|
||||
}
|
||||
}
|
||||
|
||||
$order = ( 'ASC' == strtoupper( $this->query_vars['order'] ) ) ? 'ASC' : 'DESC';
|
||||
$order = ( 'ASC' === strtoupper( $this->query_vars['order'] ) ) ? 'ASC' : 'DESC';
|
||||
|
||||
// Disable ORDER BY with 'none', an empty array, or boolean false.
|
||||
if ( in_array( $this->query_vars['orderby'], array( 'none', array(), false ), true ) ) {
|
||||
|
||||
Reference in New Issue
Block a user