We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b625d14 commit 542bc5dCopy full SHA for 542bc5d
2 files changed
src/Extension.php
@@ -189,7 +189,7 @@ public function configure(ArrayNodeDefinition $builder): void
189
->scalarNode('highLowerBound')->defaultValue(90)->end()
190
->booleanNode('showOnlySummary')->defaultValue(false)->end()
191
->booleanNode('showUncoveredFiles')->defaultValue(false)->end()
192
- ->booleanNode('target')->defaultNull()->end()
+ ->scalarNode('target')->defaultNull()->end()
193
->end()
194
195
->arrayNode('xml')
tests/ReportServiceTest.php
@@ -28,6 +28,7 @@ public function testCanGenerateTextReport(): void
28
$reportService = new ReportService(
29
[
30
'text' => [
31
+ 'target' => null,
32
'lowUpperBound' => 50,
33
'highLowerBound' => 90,
34
'showColors' => true,
0 commit comments