Skip to content

Commit 3c7d219

Browse files
Fix CS/WS issues
1 parent a37535b commit 3c7d219

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/Chunk.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class Chunk
2626
* @var int
2727
*/
2828
private $end;
29+
2930
/**
3031
* @var int
3132
*/

src/Differ.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -363,10 +363,13 @@ private static function getArrayDiffParted(array &$from, array &$to)
363363
$end = array();
364364

365365
\reset($to);
366+
366367
foreach ($from as $k => $v) {
367368
$toK = \key($to);
369+
368370
if ($toK === $k && $v === $to[$k]) {
369371
$start[$k] = $v;
372+
370373
unset($from[$k], $to[$k]);
371374
} else {
372375
break;

0 commit comments

Comments
 (0)