Skip to content
This repository was archived by the owner on Feb 19, 2020. It is now read-only.

Commit 59d1978

Browse files
Grummfymrfyda
authored andcommitted
Fix clover file upload (#21)
* Update CloverParser.php * fix correctly the bug with file
1 parent 499e96d commit 59d1978

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Codacy/Coverage/Parser/CloverParser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ private function makeFileReportsFromPackages(\SimpleXMLElement $node, $fileRepor
9191
{
9292
// iterate all packages
9393
foreach ($node as $package) {
94-
$fileReports = $this->makeFileReportsFromFiles($package, $fileReports);
94+
$fileReports = $this->makeFileReportsFromFiles($package->file, $fileReports);
9595
}
9696
return $fileReports;
9797
}

0 commit comments

Comments
 (0)