Completed
Push — master ( aa415b...e4e762 )
by Harry
02:09
created
src/Diff/FirstDiff.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     public function lines(array $old, array $new)
18 18
     {
19 19
         $out = [];
20
-        for ($i=0; $i < count($old) || $i < count($new); $i++) {
20
+        for ($i = 0; $i < count($old) || $i < count($new); $i++) {
21 21
             if ($i >= count($old)) {
22 22
                 $out[] = ['col' => 0, 'str' => $new[$i]]; // write out the entire line for extra lines
23 23
             } elseif ($i >= count($new)) {
Please login to merge, or discard this patch.