Completed
Push — master ( 459e0f...6d6e48 )
by Sebastian
03:10
created
src/Backup/Source/Rsync.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -76,11 +76,11 @@
 block discarded – undo
76 76
                 );
77 77
             } else {
78 78
                 $this->executable->fromHost($this->host)
79
-                                 ->fromUser($this->user)
80
-                                 ->fromPath($this->path)
81
-                                 ->toPath($this->getRsyncLocation($target, true))
82
-                                 ->removeDeleted($this->delete)
83
-                                 ->exclude($this->excludes);
79
+                                    ->fromUser($this->user)
80
+                                    ->fromPath($this->path)
81
+                                    ->toPath($this->getRsyncLocation($target, true))
82
+                                    ->removeDeleted($this->delete)
83
+                                    ->exclude($this->excludes);
84 84
             }
85 85
         }
86 86
         return $this->executable;
Please login to merge, or discard this patch.
src/Backup/Compressor/Directory.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -71,10 +71,10 @@
 block discarded – undo
71 71
             $this->executable = new Tar($this->pathToCommand);
72 72
             $this->executable->archiveDirectory($this->path);
73 73
             $this->executable->archiveTo($this->getArchiveFile($target))
74
-                             ->useCompression(
75
-                                 $target->shouldBeCompressed() ? $target->getCompression()->getCommand() : ''
76
-                             )
77
-                             ->removeSourceDirectory(true);
74
+                                ->useCompression(
75
+                                    $target->shouldBeCompressed() ? $target->getCompression()->getCommand() : ''
76
+                                )
77
+                                ->removeSourceDirectory(true);
78 78
         }
79 79
         return $this->executable;
80 80
     }
Please login to merge, or discard this patch.
src/Backup/Target.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -291,7 +291,7 @@
 block discarded – undo
291 291
     public function getFilenameSuffix($plain = false)
292 292
     {
293 293
         return (count($this->fileSuffixes) ? '.' . implode('.', $this->fileSuffixes) : '')
294
-             . ($plain ? '' : $this->getCompressionSuffix() . $this->getCrypterSuffix());
294
+                . ($plain ? '' : $this->getCompressionSuffix() . $this->getCrypterSuffix());
295 295
     }
296 296
 
297 297
     /**
Please login to merge, or discard this patch.