Passed
Push — master ( 441a61...2b3777 )
by Steve
58s queued 12s
created
src/Core/LCS.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
         $max = \min($length1, $length2);
71 71
 
72 72
         for ($forwardBound = 0;
73
-             $forwardBound < $max && $this->isRangeEqual($forwardBound, $forwardBound); $forwardBound++) {
73
+                $forwardBound < $max && $this->isRangeEqual($forwardBound, $forwardBound); $forwardBound++) {
74 74
             $this->setLcs($forwardBound, $forwardBound);
75 75
         }
76 76
 
Please login to merge, or discard this patch.