1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 16:14:03 +00:00

Add missing type

This commit is contained in:
Mark 2024-12-29 09:22:18 +01:00
parent 9e74fa1513
commit 322fe07592
No known key found for this signature in database
GPG key ID: 79CFF7869BD39873

View file

@ -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;