@@ -4,7 +4,6 @@ |
||
| 4 | 4 | use phpbu\App\Backup\Cli; |
| 5 | 5 | use phpbu\App\Backup\Crypter; |
| 6 | 6 | use phpbu\App\Backup\Target; |
| 7 | -use phpbu\App\Cli\Executable; |
|
| 8 | 7 | use phpbu\App\Result; |
| 9 | 8 | use phpbu\App\Util; |
| 10 | 9 | |
@@ -101,7 +101,7 @@ |
||
| 101 | 101 | public function simulate(Target $target, Result $result) |
| 102 | 102 | { |
| 103 | 103 | $result->debug( |
| 104 | - 'sync backup to ' . $this->getProtocolName() .' server' . PHP_EOL |
|
| 104 | + 'sync backup to ' . $this->getProtocolName() . ' server' . PHP_EOL |
|
| 105 | 105 | . ' host: ' . $this->host . PHP_EOL |
| 106 | 106 | . ' user: ' . $this->user . PHP_EOL |
| 107 | 107 | . ' password: ********' . PHP_EOL |
@@ -94,7 +94,7 @@ |
||
| 94 | 94 | { |
| 95 | 95 | // set uncompressed default MIME type |
| 96 | 96 | $target->setMimeType('application/x-tar'); |
| 97 | - $tar = $this->execute($target); |
|
| 97 | + $tar = $this->execute($target); |
|
| 98 | 98 | |
| 99 | 99 | $result->debug($tar->getCmd()); |
| 100 | 100 | |