chore: fixes type checking

This commit is contained in:
Nuno Maduro
2024-09-09 10:37:20 +01:00
parent 1a8f7025fa
commit fa41a67be9

View File

@ -198,8 +198,6 @@ final class Coverage
$array = []; $array = [];
foreach (array_filter($file->lineCoverageData(), is_array(...)) as $line => $tests) { foreach (array_filter($file->lineCoverageData(), is_array(...)) as $line => $tests) {
assert(is_array($tests));
$array = $eachLine($array, $tests, $line); $array = $eachLine($array, $tests, $line);
} }