You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just wanted to create a ticket for this too! (someone asked it on irc yesterday)
None of the options of InputArgument is documented, that should be done the same way as the InputOption options are documented in components/console/intro. But I think this deserves its own article, like the other article in components/console.
I'm pretty happy with the PR from @xabbuh that I just merged. @wouterj let me know if you can see some additional things that should be discussed.
And btw, this was great - Fabien opened an issue, Wouter commented on it, xabbuh created a PR, Wouter reviewed, xabbuh updated it, I merged it in - all within 12 hours. That's awesome!
InputArgument::IS_ARRAY
is not documented. It can only be used at the end of the argument list and allows to take an indefinite number of arguments:if run with
console foo a b c d e
, the argument value will be:['a', 'b', 'c', 'd', 'e']
The text was updated successfully, but these errors were encountered: