@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | */ |
81 | 81 | protected function createBackupFilename(): void |
82 | 82 | { |
83 | - $this->backupFilename = $this->storageFolder . $this->getDatabaseIdentifier() . '-' . microtime(true) . '.' . $this->getFileExtension(); |
|
83 | + $this->backupFilename = $this->storageFolder.$this->getDatabaseIdentifier().'-'.microtime(true).'.'.$this->getFileExtension(); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | /** |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | Log::debug('Starting MySQL import procedure.'); |
120 | 120 | |
121 | 121 | $startTimeImport = microtime(true); |
122 | - $backupFile = '"' . addcslashes($backupFile, '\\"') . '"'; |
|
122 | + $backupFile = '"'.addcslashes($backupFile, '\\"').'"'; |
|
123 | 123 | $command = sprintf('mysql %s %s < %s', $this->getCredentials(), $this->database, $backupFile); |
124 | 124 | |
125 | 125 | if (false === $this->processHandler->run($command)) { |