Skip to content

Commit 4ea7615

Browse files
Fix CS/WS issue
1 parent 1b4794c commit 4ea7615

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/RawCodeCoverageData.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ public static function fromXdebugWithoutPathCoverage(array $rawCoverage): self
3535

3636
public static function fromXdebugWithPathCoverage(array $rawCoverage): self
3737
{
38-
$lineCoverage = $functionCoverage = [];
38+
$lineCoverage = [];
39+
$functionCoverage = [];
3940

4041
foreach ($rawCoverage as $file => $fileCoverageData) {
4142
if (isset($fileCoverageData['functions'])) {

0 commit comments

Comments
 (0)