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
Currently, the option completion seems to support only options defined with a default value.
It would be great to support required and optional options:
$resolver->setRequired(array('first_required', 'other_required'));
$resolver->setOptional(array('optional_setting'));
// OptionsResolver::setOptional is deprecated in Symfony 2.7. It is replaced by isDefined$resolver->setDefined(array('optional_setting'));
all these methods accept both a string or an array of strings as argument
The text was updated successfully, but these errors were encountered:
Currently, the option completion seems to support only options defined with a default value.
It would be great to support required and optional options:
all these methods accept both a string or an array of strings as argument
The text was updated successfully, but these errors were encountered: