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

Minor config comment corrections

This commit is contained in:
lukinovec 2022-07-25 12:10:28 +02:00
parent 83f2cab944
commit a834efa692

View file

@ -48,7 +48,7 @@ return [
*/ */
'include_in_queries' => true, 'include_in_queries' => true,
/** /**
* Defines how many tenants you want to be in a pending state. * Defines how many pending tenants you want to have ready in the pending tenant pool.
* This depends on the volume of tenants you're creating. * This depends on the volume of tenants you're creating.
*/ */
'count' => env('TENANCY_PENDING_COUNT', 5), 'count' => env('TENANCY_PENDING_COUNT', 5),
@ -57,7 +57,7 @@ return [
* You can define time constraints for automatically deleting unused * You can define time constraints for automatically deleting unused
* pending tenants (schedule the `tenancy:pending-clear` command to make this work automatically). * pending tenants (schedule the `tenancy:pending-clear` command to make this work automatically).
* *
* If both values are set to null, the time limit won't be set and all pending tenants will be deleted. * If both values are set to null, the time constraints won't be set and all pending tenants will be deleted.
*/ */
'older_than_days' => env('TENANCY_PENDING_OLDER_THAN_DAYS', null), 'older_than_days' => env('TENANCY_PENDING_OLDER_THAN_DAYS', null),