Skip to content

Commit

Permalink
Fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonpayton committed Feb 5, 2022
1 parent b3f5c1d commit 4d2c720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DB_Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -1620,7 +1620,7 @@ private static function run( $cmd, $assoc_args = [], $send_to_shell = true, $int
static function ( $a, $b ) {
if ( 'force' === $a ) {
return 1;
} else if ( 'force' === $b ) {
} elseif ( 'force' === $b ) {
return -1;
} else {
return 0;
Expand Down

0 comments on commit 4d2c720

Please sign in to comment.