Skip to content

Commit fc9c119

Browse files
guvraifsnop
authored andcommitted
Fix if statement indentation in constructor
1 parent 034247b commit fc9c119

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Ifsnop/Mysqldump/Mysqldump.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ public function __construct(
201201
}
202202

203203
// If no include-views is passed in, dump the same views as tables, mimic mysqldump behaviour.
204-
if ( ! isset( $dumpSettings['include-views'] ) ) {
205-
$this->dumpSettings['include-views'] = $this->dumpSettings['include-tables'];
204+
if (!isset($dumpSettings['include-views'])) {
205+
$this->dumpSettings['include-views'] = $this->dumpSettings['include-tables'];
206206
}
207207

208208
// Create a new compressManager to manage compressed output

0 commit comments

Comments
 (0)