Skip to content

Commit

Permalink
Fix non nullable properties
Browse files Browse the repository at this point in the history
  • Loading branch information
staabm authored and sebastianbergmann committed Nov 17, 2024
1 parent 2ea00a3 commit 44e9d00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/TextUI/Configuration/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,12 @@
/**
* @var list<non-empty-string>
*/
private ?array $groups;
private array $groups;

/**
* @var list<non-empty-string>
*/
private ?array $excludeGroups;
private array $excludeGroups;
private int $randomOrderSeed;
private bool $includeUncoveredFiles;
private TestSuiteCollection $testSuite;
Expand Down

0 comments on commit 44e9d00

Please sign in to comment.