diff --git a/src/DbDumper.php b/src/DbDumper.php index 05fad80..f212fd2 100644 --- a/src/DbDumper.php +++ b/src/DbDumper.php @@ -261,7 +261,7 @@ protected function echoToFile(string $command, string $dumpFile): string ? $this->addCompressorToCommand($command) : $command; - $dumpFile = '"' . addcslashes($dumpFile, '\\"') . '"'; + $dumpFile = '"'.addcslashes($dumpFile, '\\"').'"'; return $command.' > '.$dumpFile; }