Skip to content

Commit 66b4fe6

Browse files
Remove unused parameter
1 parent 20ff830 commit 66b4fe6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TextUI/Configuration/Xml/Loader.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function load(string $filename): LoadedFromFileConfiguration
9292
$filename,
9393
(new Validator)->validate($document, $xsdFilename),
9494
$this->extensions($filename, $xpath),
95-
$this->codeCoverage($filename, $xpath, $document),
95+
$this->codeCoverage($filename, $xpath),
9696
$this->groups($xpath),
9797
$this->testdoxGroups($xpath),
9898
$this->logging($filename, $xpath),
@@ -300,7 +300,7 @@ private function getConfigurationArguments(string $filename, DOMNodeList $nodes)
300300
return $arguments;
301301
}
302302

303-
private function codeCoverage(string $filename, DOMXPath $xpath, DOMDocument $document): CodeCoverage
303+
private function codeCoverage(string $filename, DOMXPath $xpath): CodeCoverage
304304
{
305305
$cacheDirectory = null;
306306
$pathCoverage = false;

0 commit comments

Comments
 (0)