浏览代码

Simplify conditional block

Antoine Hérault 14 年之前
父节点
当前提交
d9f00ca7be
共有 1 个文件被更改,包括 1 次插入3 次删除
  1. 1 3
      src/Symfony/Component/Console/Input/ArgvInput.php

+ 1 - 3
src/Symfony/Component/Console/Input/ArgvInput.php

@@ -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;
         }