Skip to content

Commit e8d0c8d

Browse files
authored
Fix PHPCS issue
1 parent 2f3ff2f commit e8d0c8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DB_Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ public function export( $args, $assoc_args ) {
558558
* In case that `--default-character-set` is not given and `DB_CHARSET` is `utf8`,
559559
* use `utf8mb4` as a `default-character-set` to ensure emojis are encoded correctly.
560560
*/
561-
if ( !isset( $assoc_args['default-character-set'] ) &&
561+
if ( ! isset( $assoc_args['default-character-set'] ) &&
562562
defined( 'DB_CHARSET' ) && 'utf8' == constant( 'DB_CHARSET' ) ) {
563563
$assoc_args['default-character-set'] = 'utf8mb4';
564564
}

0 commit comments

Comments
 (0)