Completed
Push — master ( 35413c...f854d5 )
by Sebastian
21:09
created
src/Backup/Source/Tar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@
 block discarded – undo
146 146
         $result->debug($tar->getCmdPrintable());
147 147
 
148 148
         if (!$tar->isSuccessful()) {
149
-            throw new Exception('tar failed: ' . $tar->getStdErr());
149
+            throw new Exception('tar failed: '.$tar->getStdErr());
150 150
         }
151 151
 
152 152
         return $this->createStatus($target);
Please login to merge, or discard this patch.
src/Cli/Executable/Tar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -260,7 +260,7 @@
 block discarded – undo
260 260
 
261 261
         $tar->addOptionIfNotEmpty('--force-local', $this->local, false);
262 262
         $tar->addOptionIfNotEmpty('--use-compress-program', $this->compressProgram);
263
-        $tar->addOption('-' . (empty($this->compressProgram) ? $this->compression : '') . $create);
263
+        $tar->addOption('-'.(empty($this->compressProgram) ? $this->compression : '').$create);
264 264
 
265 265
         if ($this->isThrottled()) {
266 266
             $pv = new Cmd('pv');
Please login to merge, or discard this patch.