Completed
Pull Request — master (#7)
by Steve
04:16
created
src/RangeDifferencer/Core/LCS.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,8 +69,8 @@
 block discarded – undo
69 69
         $max = \min($length1, $length2);
70 70
 
71 71
         for ($forwardBound = 0;
72
-             $forwardBound < $max && $this->isRangeEqual($forwardBound, $forwardBound);
73
-             $forwardBound++) {
72
+                $forwardBound < $max && $this->isRangeEqual($forwardBound, $forwardBound);
73
+                $forwardBound++) {
74 74
             $this->setLcs($forwardBound, $forwardBound);
75 75
         }
76 76
 
Please login to merge, or discard this patch.