Skip to content

Commit f2153c8

Browse files
committed
Fix phpcs
1 parent 730da5d commit f2153c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/WP_CLI/CommandWithUpgrade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ protected function update_many( $args, $assoc_args ) {
377377
$items_to_update = array_filter(
378378
$items,
379379
function ( $item ) {
380-
return isset( $item['update'] ) && $item['update'] !== 'none';
380+
return isset( $item['update'] ) && 'none' !== $item['update'];
381381
}
382382
);
383383

0 commit comments

Comments
 (0)