Skip to content

Commit 3af6933

Browse files
committed
fix: strict comparison on mixed
1 parent 860bb2b commit 3af6933

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Comment_Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ public function delete( $args, $assoc_args ) {
498498
WP_CLI::error( "Failed deleting {$error_count} comments." );
499499
}
500500

501-
exit( 0 === $status ? 0 : 1 );
501+
exit( 0 == $status ? 0 : 1 );
502502
}
503503

504504
private function call( $args, $status, $success, $failure ) {

0 commit comments

Comments
 (0)