Skip to content

Commit

Permalink
Merge pull request #2497 from bolt/chore/fix-phpstan
Browse files Browse the repository at this point in the history
Fixes a PHPStan check error, introduced in Symfony 5.2.6
  • Loading branch information
I-Valchev authored Mar 29, 2021
2 parents ed4c9d4 + 363ea4e commit 958b462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/ListUsersCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ protected function configure(): void
)
// commands can optionally define arguments and/or options (mandatory and optional)
// see https://symfony.com/doc/current/components/console/console_arguments.html
->addOption('max-results', null, InputOption::VALUE_OPTIONAL, 'Limits the number of users listed', 50)
->addOption('max-results', null, InputOption::VALUE_OPTIONAL, 'Limits the number of users listed', '50')
->addOption('send-to', null, InputOption::VALUE_OPTIONAL, 'If set, the result is sent to the given email address');
}

Expand Down

0 comments on commit 958b462

Please sign in to comment.