We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With the following command:
command --myopt=value1 --myopt=value2
Calling:
$options->getOpt('myopt')
would return an array containing all values:
['value1', 'value2']
instead, it currently returns a string containing the last value:
'value2'
The text was updated successfully, but these errors were encountered:
Great library by the way - really like the minimal requirements!
Sorry, something went wrong.
Add options that can be specified multiple times
4d4cc7c
Issue splitbrain#31
No branches or pull requests
With the following command:
command --myopt=value1 --myopt=value2
Calling:
$options->getOpt('myopt')
would return an array containing all values:
['value1', 'value2']
instead, it currently returns a string containing the last value:
'value2'
The text was updated successfully, but these errors were encountered: