From 322fe07592dfcabbc5e748d98f7f936388f541d0 Mon Sep 17 00:00:00 2001 From: Mark <14284867+xHeaven@users.noreply.github.com> Date: Sun, 29 Dec 2024 09:22:18 +0100 Subject: [PATCH] Add missing 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 e3feb228..6014939b 100644 --- a/src/Concerns/ParallelCommand.php +++ b/src/Concerns/ParallelCommand.php @@ -14,7 +14,7 @@ use Symfony\Component\Console\Input\InputOption; trait ParallelCommand { - public const MAX_PROCESSES = 24; + public const int MAX_PROCESSES = 24; protected bool $runningConcurrently = false; abstract protected function childHandle(mixed ...$args): bool;