diff --git a/src/Databases/MySql.php b/src/Databases/MySql.php index b60bc11..d9fefea 100644 --- a/src/Databases/MySql.php +++ b/src/Databases/MySql.php @@ -203,7 +203,7 @@ public function getDumpCommand(string $dumpFile, string $temporaryCredentialsFil $command[] = '--no-create-info'; } - if (!$this->includeData) { + if (! $this->includeData) { $command[] = '--no-data'; } diff --git a/src/Databases/PostgreSql.php b/src/Databases/PostgreSql.php index d00218a..bc7829b 100644 --- a/src/Databases/PostgreSql.php +++ b/src/Databases/PostgreSql.php @@ -62,7 +62,7 @@ public function getDumpCommand(string $dumpFile): string $command[] = '--data-only'; } - if (!$this->includeData) { + if (! $this->includeData) { $command[] = '--schema-only'; }