From 4105e33c39a51a03693d04f56fd262accbdca5a0 Mon Sep 17 00:00:00 2001 From: Yury Kudryavtsev Date: Tue, 21 Oct 2025 11:44:55 +0300 Subject: [PATCH] Fix Undefined array key "testdox-columns" warning Fix Undefined array key "testdox-columns" warning --- bin/worker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/worker.php b/bin/worker.php index b65c91f0..dc69d67e 100644 --- a/bin/worker.php +++ b/bin/worker.php @@ -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) {