@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | public function __construct() |
36 | 36 | { |
37 | 37 | $this->database = Config::get('database.default'); |
38 | - $this->realDatabase = Config::get('database.connections.' . $this->database); |
|
38 | + $this->realDatabase = Config::get('database.connections.'.$this->database); |
|
39 | 39 | $this->processHandler = new ProcessHandler(); |
40 | 40 | |
41 | 41 | $this->buildDatabaseClass(); |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | */ |
89 | 89 | public function generateBackupFilename(string $databaseIdentifier, string $databaseFileExtension): string |
90 | 90 | { |
91 | - return $this->backupFilename = $this->storageFolder . $databaseIdentifier . '-' . time() . '.' . $databaseFileExtension; |
|
91 | + return $this->backupFilename = $this->storageFolder.$databaseIdentifier.'-'.time().'.'.$databaseFileExtension; |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |