diff --git a/framework/console/Request.php b/framework/console/Request.php index 195a840..b2c2679 100644 --- a/framework/console/Request.php +++ b/framework/console/Request.php @@ -56,7 +56,7 @@ class Request extends \yii\base\Request $name = $matches[1]; $this->params[$name] = isset($matches[3]) ? $matches[3] : true; } else { - $this->params['--args'][] = $param; + $this->params['args'][] = $param; } } }