Completed
Push — master ( da23ca...d8fe59 )
by Sebastian
04:21
created
src/Backup/Sync/Rsync.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -87,11 +87,11 @@
 block discarded – undo
87 87
     protected function configureExecutable(Executable\Rsync $exec, Target $target)
88 88
     {
89 89
         $exec->fromPath($this->getRsyncLocation($target))
90
-             ->toHost($this->host)
91
-             ->toPath($this->path)
92
-             ->toUser($this->user)
93
-             ->compressed(!$target->shouldBeCompressed())
94
-             ->removeDeleted($this->delete)
95
-             ->exclude($this->excludes);
90
+                ->toHost($this->host)
91
+                ->toPath($this->path)
92
+                ->toUser($this->user)
93
+                ->compressed(!$target->shouldBeCompressed())
94
+                ->removeDeleted($this->delete)
95
+                ->exclude($this->excludes);
96 96
     }
97 97
 }
Please login to merge, or discard this patch.
src/Backup/Source/Rsync.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -65,11 +65,11 @@
 block discarded – undo
65 65
     protected function configureExecutable(Executable\Rsync $exec, Target $target)
66 66
     {
67 67
         $exec->fromHost($this->host)
68
-             ->fromUser($this->user)
69
-             ->fromPath($this->path)
70
-             ->toPath($this->getRsyncLocation($target))
71
-             ->removeDeleted($this->delete)
72
-             ->exclude($this->excludes);
68
+                ->fromUser($this->user)
69
+                ->fromPath($this->path)
70
+                ->toPath($this->getRsyncLocation($target))
71
+                ->removeDeleted($this->delete)
72
+                ->exclude($this->excludes);
73 73
     }
74 74
 
75 75
     /**
Please login to merge, or discard this patch.