Skip to content

Commit 2379aa9

Browse files
Minor tweaks
1 parent 1e09170 commit 2379aa9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Parser.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function parse($string)
6363
$diffs = array();
6464
$diff = null;
6565
$collected = array();
66-
66+
6767
for ($i = 0; $i < $lineCount; ++$i) {
6868
if (preg_match('(^---\\s+(?P<file>\\S+))', $lines[$i], $fromMatch) &&
6969
preg_match('(^\\+\\+\\+\\s+(?P<file>\\S+))', $lines[$i + 1], $toMatch)) {
@@ -133,7 +133,7 @@ private function parseFileDiff(Diff $diff, array $lines)
133133
array_unshift($lines, $last);
134134
}
135135
}
136-
136+
137137
$diff->setChunks($chunks);
138138
}
139139
}

src/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ function($class) {
2020
}
2121
}
2222
);
23-
// @codeCoverageIgnoreEnd
23+
// @codeCoverageIgnoreEnd

0 commit comments

Comments
 (0)