Completed
Push — master ( 696e0c...9b2b5f )
by Sebastian
02:46
created
src/Cli/Executable/Tar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -238,7 +238,7 @@
 block discarded – undo
238 238
         $tar->addOptionIfNotEmpty('--force-local', $this->local, false);
239 239
         $tar->addOptionIfNotEmpty('--ignore-failed-read', $this->ignoreFailedRead, false);
240 240
         $tar->addOptionIfNotEmpty('--use-compress-program', $this->compressProgram);
241
-        $tar->addOption('-' . (empty($this->compressProgram) ? $this->compression : '') . 'cf');
241
+        $tar->addOption('-'.(empty($this->compressProgram) ? $this->compression : '').'cf');
242 242
         $tar->addArgument($this->tarPathname);
243 243
         $tar->addOption('-C', dirname($this->path), ' ');
244 244
         $tar->addArgument(basename($this->path));
Please login to merge, or discard this patch.
src/Backup/Source/Tar.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -180,12 +180,12 @@
 block discarded – undo
180 180
 
181 181
         $executable = new Executable\Tar($this->pathToTar);
182 182
         $executable->archiveDirectory($this->path)
183
-                   ->useCompression($this->compression)
184
-                   ->useCompressProgram($this->compressProgram)
185
-                   ->forceLocal($this->forceLocal)
186
-                   ->ignoreFailedRead($this->ignoreFailedRead)
187
-                   ->removeSourceDirectory($this->removeSourceDir)
188
-                   ->archiveTo($this->pathToArchive);
183
+                    ->useCompression($this->compression)
184
+                    ->useCompressProgram($this->compressProgram)
185
+                    ->forceLocal($this->forceLocal)
186
+                    ->ignoreFailedRead($this->ignoreFailedRead)
187
+                    ->removeSourceDirectory($this->removeSourceDir)
188
+                    ->archiveTo($this->pathToArchive);
189 189
         // add paths to exclude
190 190
         foreach ($this->excludes as $path) {
191 191
             $executable->addExclude($path);
Please login to merge, or discard this patch.