From cd5272d8cc9f37e66dbfb3288895023075a40f57 Mon Sep 17 00:00:00 2001 From: Admiral-Enigma Date: Fri, 22 Aug 2025 10:00:49 +0200 Subject: [PATCH] Cast "testdox-columns" to an int --- bin/worker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/worker.php b/bin/worker.php index c26b05eb..b65c91f0 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']), - $getopt['testdox-columns'] ?? null, + (int) $getopt['testdox-columns'] ?? null, ); while (true) {