Skip to content

Commit be45039

Browse files
committed
fix: linting errors
1 parent 0ccc287 commit be45039

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/Comment_Command.php

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -795,11 +795,13 @@ static function ( $id ) use ( $exclude_list ) {
795795
* @return array Array of comment IDs.
796796
*/
797797
private function get_all_comment_ids() {
798-
$query = new WP_Comment_Query();
799-
$comments = $query->query( array(
800-
'fields' => 'ids',
801-
'number' => 0, // Get all comments
802-
) );
798+
$query = new WP_Comment_Query();
799+
$comments = $query->query(
800+
array(
801+
'fields' => 'ids',
802+
'number' => 0, // Get all comments
803+
)
804+
);
803805

804806
return $comments;
805807
}

0 commit comments

Comments
 (0)