Skip to content

Commit 3b8fd31

Browse files
Fix CS/WS issues
1 parent 52e5f81 commit 3b8fd31

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/Target/MapBuilder.php

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -171,19 +171,18 @@ public function build(Filter $filter, FileAnalyser $analyser): array
171171

172172
private function mergeLines(string $targetClass, array $sourceData, array &$data): void
173173
{
174-
// in big inheritance trees we might handle a lot of data.
175-
// this loop needs to prevent unnecessary work whenever possible.
176-
174+
/**
175+
* In large inheritance trees we might handle a lot of data.
176+
* This loop needs to prevent unnecessary work whenever possible.
177+
*/
177178
foreach ($sourceData as $file => $lines) {
178179
if (!isset($data[$targetClass][$file])) {
179180
$data[$targetClass][$file] = $lines;
180181

181182
continue;
182183
}
183184

184-
if (
185-
$data[$targetClass][$file] === $lines
186-
) {
185+
if ($data[$targetClass][$file] === $lines) {
187186
continue;
188187
}
189188

0 commit comments

Comments
 (0)