1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 09:34:04 +00:00

remove const type

This commit is contained in:
Samuel Štancl 2024-08-06 03:30:32 +02:00
parent 1b0e7d0507
commit b9ff980293

View file

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