Completed
Pull Request — master (#525)
by Sean
03:16
created
code/backends/DeploymentStrategy.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -136,10 +136,10 @@
 block discarded – undo
136 136
 	 */
137 137
 	public function getChangesModificationNeeded() {
138 138
 		$filtered = [];
139
-		foreach ($this->getChanges() as $change => $details) {
140
-			if (array_key_exists('description', $details)) {
139
+		foreach($this->getChanges() as $change => $details) {
140
+			if(array_key_exists('description', $details)) {
141 141
 				$filtered[$change] = $details;
142
-			} else if (
142
+			} else if(
143 143
 				(array_key_exists('from', $details) || array_key_exists('to', $details))
144 144
 				&& $details['from'] !== $details['to']
145 145
 			) {
Please login to merge, or discard this patch.