Completed
Push — master ( d8fe59...e9be78 )
by Sebastian
03:10
created
src/Backup/Sync/Rsync.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -97,12 +97,12 @@
 block discarded – undo
97 97
                 );
98 98
             } else {
99 99
                 $this->executable->fromPath($this->getRsyncLocation($target))
100
-                                 ->toHost($this->host)
101
-                                 ->toPath($this->path)
102
-                                 ->toUser($this->user)
103
-                                 ->compressed(!$target->shouldBeCompressed())
104
-                                 ->removeDeleted($this->delete)
105
-                                 ->exclude($this->excludes);
100
+                                    ->toHost($this->host)
101
+                                    ->toPath($this->path)
102
+                                    ->toUser($this->user)
103
+                                    ->compressed(!$target->shouldBeCompressed())
104
+                                    ->removeDeleted($this->delete)
105
+                                    ->exclude($this->excludes);
106 106
             }
107 107
         }
108 108
         return $this->executable;
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
@@ -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))
82
-                                 ->removeDeleted($this->delete)
83
-                                 ->exclude($this->excludes);
79
+                                    ->fromUser($this->user)
80
+                                    ->fromPath($this->path)
81
+                                    ->toPath($this->getRsyncLocation($target))
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.