1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-05-07 08:34:04 +00:00

phpstan: change InputOption syntax

This commit is contained in:
Samuel Stancl 2026-03-09 02:11:07 +01:00
parent 16861d2599
commit 8f3ea6297f
No known key found for this signature in database
GPG key ID: BA146259A1E16C57
2 changed files with 3 additions and 3 deletions

View file

@ -63,7 +63,7 @@ class TenantDump extends DumpCommand
protected function getOptions(): array
{
return array_merge([
['tenant', null, InputOption::VALUE_OPTIONAL, '', null],
new InputOption('tenant', null, InputOption::VALUE_OPTIONAL, '', null),
], parent::getOptions());
}
}