Skip to content

Commit 44e9d00

Browse files
staabmsebastianbergmann
authored andcommitted
Fix non nullable properties
1 parent 2ea00a3 commit 44e9d00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TextUI/Configuration/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,12 +141,12 @@
141141
/**
142142
* @var list<non-empty-string>
143143
*/
144-
private ?array $groups;
144+
private array $groups;
145145

146146
/**
147147
* @var list<non-empty-string>
148148
*/
149-
private ?array $excludeGroups;
149+
private array $excludeGroups;
150150
private int $randomOrderSeed;
151151
private bool $includeUncoveredFiles;
152152
private TestSuiteCollection $testSuite;

0 commit comments

Comments
 (0)