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;