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

pending tenants: minor cleanup

This commit is contained in:
Samuel Štancl 2025-10-29 19:24:06 +01:00
parent 0dc187510b
commit d274d8c902
No known key found for this signature in database
GPG key ID: BA146259A1E16C57
4 changed files with 13 additions and 33 deletions

View file

@ -18,7 +18,7 @@ trait HasTenantOptions
{
return array_merge([
['tenants', null, InputOption::VALUE_IS_ARRAY|InputOption::VALUE_OPTIONAL, 'The tenants to run this command for. Leave empty for all tenants', null],
['with-pending', null, InputOption::VALUE_NONE, 'Include pending tenants in query'],
['with-pending', null, InputOption::VALUE_NONE, 'Include pending tenants in query'], // todo@pending should we also offer without-pending? if we add this, mention in docs
], parent::getOptions());
}