Simplify conditional block

This commit is contained in:
Antoine Hérault 2011-06-07 15:19:16 +02:00
parent fb051b2f98
commit d9f00ca7be

View File

@ -229,10 +229,8 @@ class ArgvInput extends Input
$value = $option->isValueOptional() ? $option->getDefault() : true;
}
if ($option->isArray() && isset($this->options[$name])) {
if ($option->isArray()) {
$this->options[$name][] = $value;
} else if ($option->isArray()) {
$this->options[$name] = array($value);
} else {
$this->options[$name] = $value;
}