Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Apr 24, 2024
1 parent 519b558 commit faca505
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Databases/MySql.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public function getDumpCommand(string $dumpFile, string $temporaryCredentialsFil
$command[] = '--no-create-info';
}

if (!$this->includeData) {
if (! $this->includeData) {
$command[] = '--no-data';
}

Expand Down
2 changes: 1 addition & 1 deletion src/Databases/PostgreSql.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function getDumpCommand(string $dumpFile): string
$command[] = '--data-only';
}

if (!$this->includeData) {
if (! $this->includeData) {
$command[] = '--schema-only';
}

Expand Down

0 comments on commit faca505

Please sign in to comment.