Skip to content

Commit 03663fb

Browse files
Ignored PHPStan issue on phpunit/php-code-coverage < 10.0
1 parent 693b852 commit 03663fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CodeCoverageExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public function load(ServiceContainer $container, array $params = []): void
122122
$reports['text'] = version_compare(Version::id(), '10.0.0', '>=') && class_exists(Thresholds::class)
123123
? new Report\Text(
124124
Thresholds::from($optionsWrapper->getLowerUpperBound(), $optionsWrapper->getHighLowerBound()),
125-
$optionsWrapper->showUncoveredFiles(),
125+
$optionsWrapper->showUncoveredFiles(), // @phpstan-ignore-line Version 10.0.0+ uses Thresholds
126126
$optionsWrapper->showOnlySummary()
127127
)
128128
: new Report\Text(

0 commit comments

Comments
 (0)