Completed
Push — develop ( 87bee0...85ae2e )
by Erwin
04:50
created
src/Databases/MySQLDatabase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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)) {
Please login to merge, or discard this patch.