Fix Undefined array key "testdox-columns" warning

Fix Undefined array key "testdox-columns" warning
This commit is contained in:
Yury Kudryavtsev
2025-10-21 11:44:55 +03:00
committed by GitHub
parent 08b09f2e98
commit 4105e33c39

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) {