@@ -44,8 +44,8 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | protected function findComposer() |
| 46 | 46 | { |
| 47 | - if (file_exists(getcwd() . '/composer.phar')) { |
|
| 48 | - return '"' . PHP_BINARY . '" ' . getcwd() . '/composer.phar'; |
|
| 47 | + if (file_exists(getcwd().'/composer.phar')) { |
|
| 48 | + return '"'.PHP_BINARY.'" '.getcwd().'/composer.phar'; |
|
| 49 | 49 | } |
| 50 | 50 | return 'composer'; |
| 51 | 51 | } |
@@ -54,14 +54,14 @@ discard block |
||
| 54 | 54 | { |
| 55 | 55 | |
| 56 | 56 | $prefix = (strlen($table) > 0) |
| 57 | - ? 'table_' . strtolower(str_replace('-', '_', $table)) . "_" |
|
| 58 | - : 'database_' . strtolower(str_replace('-', '_', $database)) . "_"; |
|
| 57 | + ? 'table_'.strtolower(str_replace('-', '_', $table))."_" |
|
| 58 | + : 'database_'.strtolower(str_replace('-', '_', $database))."_"; |
|
| 59 | 59 | |
| 60 | 60 | $extension = Driver::isMongoDB() ? '' : '.sql'; |
| 61 | - $fileName = $prefix . 'backup_' . date('G_a_m_d_y_h_i_s') . $extension; |
|
| 61 | + $fileName = $prefix.'backup_'.date('G_a_m_d_y_h_i_s').$extension; |
|
| 62 | 62 | |
| 63 | 63 | if (Driver::isSqlite()) { |
| 64 | - $fileName = 'backup_' . date('G_a_m_d_y_h_i_s') . $extension; |
|
| 64 | + $fileName = 'backup_'.date('G_a_m_d_y_h_i_s').$extension; |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | return $fileName; |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | |
| 83 | 83 | // $hostname = config('database.connections.' . $driver . '.host', '127.0.0.1'); |
| 84 | 84 | // $port = config('database.connections.' . $driver . '.port', '3306'); |
| 85 | - $database = config('database.connections.' . $driver . '.database', 'dbm'); |
|
| 85 | + $database = config('database.connections.'.$driver.'.database', 'dbm'); |
|
| 86 | 86 | $table = ($this->option('table') != null) ? $this->option('table') : ''; |
| 87 | 87 | // $username = config('database.connections.' . $driver . '.username', 'root'); |
| 88 | 88 | // $password = config('database.connections.' . $driver . '.password', ''); |
@@ -92,8 +92,8 @@ discard block |
||
| 92 | 92 | $directory = (config('dbm.backup.dir', 'backups') != '') |
| 93 | 93 | ? DIRECTORY_SEPARATOR . config('dbm.backup.dir', 'backups') |
| 94 | 94 | : ''; |
| 95 | - $directoryPath = DBM::getPathPrefix() . $directory . DIRECTORY_SEPARATOR . $driver; |
|
| 96 | - $filePath = $directoryPath . DIRECTORY_SEPARATOR . $this->getFileName($table, $database); |
|
| 95 | + $directoryPath = DBM::getPathPrefix().$directory.DIRECTORY_SEPARATOR.$driver; |
|
| 96 | + $filePath = $directoryPath.DIRECTORY_SEPARATOR.$this->getFileName($table, $database); |
|
| 97 | 97 | |
| 98 | 98 | if (!File::isDirectory($directoryPath)) { |
| 99 | 99 | |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | $compressBinaryPath = config('dbm.backup.compress_binary_path', ""); |
| 107 | 107 | $compressCommand = config('dbm.backup.compress_command', "gzip"); |
| 108 | 108 | $compressExtension = config('dbm.backup.compress_extension', ".gz"); |
| 109 | - $dumpBinaryPath = config('dbm.backup.' . $driver . '.binary_path', ''); |
|
| 109 | + $dumpBinaryPath = config('dbm.backup.'.$driver.'.binary_path', ''); |
|
| 110 | 110 | |
| 111 | 111 | switch ($driver) { |
| 112 | 112 | case 'mysql': |