Completed
Push — master ( 1d27bd...52e010 )
by Sebastian
05:06
created
src/Backup/Source/Tar.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -161,10 +161,10 @@
 block discarded – undo
161 161
 
162 162
         $executable = new Executable\Tar($this->pathToTar);
163 163
         $executable->archiveDirectory($this->path)
164
-                   ->useCompression($this->compression)
165
-                   ->ignoreFailedRead($this->ignoreFailedRead)
166
-                   ->removeSourceDirectory($this->removeSourceDir)
167
-                   ->archiveTo($this->pathToArchive);
164
+                    ->useCompression($this->compression)
165
+                    ->ignoreFailedRead($this->ignoreFailedRead)
166
+                    ->removeSourceDirectory($this->removeSourceDir)
167
+                    ->archiveTo($this->pathToArchive);
168 168
         // add paths to exclude
169 169
         foreach ($this->excludes as $path) {
170 170
             $executable->addExclude($path);
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
@@ -197,7 +197,7 @@
 block discarded – undo
197 197
         }
198 198
 
199 199
         $tar->addOptionIfNotEmpty('--ignore-failed-read', $this->ignoreFailedRead, false);
200
-        $tar->addOption('-' . $this->compression . 'cf');
200
+        $tar->addOption('-'.$this->compression.'cf');
201 201
         $tar->addArgument($this->tarPathname);
202 202
         $tar->addOption('-C', dirname($this->path), ' ');
203 203
         $tar->addArgument(basename($this->path));
Please login to merge, or discard this patch.