From b9ff98029353f407c5a30dbd22874de7fc5616ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Tue, 6 Aug 2024 03:30:32 +0200 Subject: [PATCH] remove const type --- src/Concerns/ParallelCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Concerns/ParallelCommand.php b/src/Concerns/ParallelCommand.php index 7f49fcb6..c92ddf70 100644 --- a/src/Concerns/ParallelCommand.php +++ b/src/Concerns/ParallelCommand.php @@ -11,7 +11,7 @@ use Symfony\Component\Console\Input\InputOption; trait ParallelCommand { - public const int MAX_PROCESSES = 24; + public const MAX_PROCESSES = 24; abstract protected function childHandle(...$args): bool;