Merge pull request #1544 from Se7en-RU/fix-testdox-columns-warning

Fix Undefined array key "testdox-columns" warning
This commit is contained in:
nuno maduro
2025-11-04 07:42:57 +00:00
committed by GitHub

View File

@ -86,7 +86,7 @@ $bootPest = (static function (): void {
$getopt['teamcity-file'] ?? null,
$getopt['testdox-file'] ?? null,
isset($getopt['testdox-color']),
(int) $getopt['testdox-columns'] ?? null,
(int) ($getopt['testdox-columns'] ?? null),
);
while (true) {