Skip to content

Commit

Permalink
[acl][command][SecurityBundle] Fixed user input option mode to be an …
Browse files Browse the repository at this point in the history
…Array

Fixed Issue #13789
  • Loading branch information
benjaminlong committed Feb 25, 2015
1 parent c9da1ae commit bd17ef8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -78,7 +78,7 @@ protected function configure()
EOF
)
->addArgument('arguments', InputArgument::IS_ARRAY | InputArgument::REQUIRED, 'A list of permissions and object identities (class name and ID separated by a column)')
->addOption('user', null, InputOption::VALUE_REQUIRED, 'A list of security identities')
->addOption('user', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'A list of security identities')
->addOption('role', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'A list of roles')
->addOption('class-scope', null, InputOption::VALUE_NONE, 'Use class-scope entries')
;
Expand Down

0 comments on commit bd17ef8

Please sign in to comment.