Completed
Push — master ( 392c33...09dc6d )
by Kenji
02:31
created
application/tests/_ci_phpunit_test/patcher/3.x/Patcher/MethodPatcher.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -70,13 +70,11 @@
 block discarded – undo
70 70
 					{
71 71
 						$replacement = false;
72 72
 					}
73
-				}
74
-				else
73
+				} else
75 74
 				{
76 75
 					$new_source .= $token;
77 76
 				}
78
-			}
79
-			else
77
+			} else
80 78
 			{
81 79
 				$new_source .= $token[1];
82 80
 			}
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/patcher/3.x/Patcher/FunctionPatcher.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -181,8 +181,7 @@  discard block
 block discarded – undo
181 181
 			if (is_string($token))
182 182
 			{
183 183
 				$new_source .= $token;
184
-			}
185
-			elseif ($i == $replacement['key'])
184
+			} elseif ($i == $replacement['key'])
186 185
 			{
187 186
 				$new_source .= $replacement['value'];
188 187
 				$replacement['key'] = key(self::$replacement);
@@ -192,8 +191,7 @@  discard block
 block discarded – undo
192 191
 				{
193 192
 					$replacement = false;
194 193
 				}
195
-			}
196
-			else
194
+			} else
197 195
 			{
198 196
 				$new_source .= $token[1];
199 197
 			}
Please login to merge, or discard this patch.