diff --git a/framework/console/Command.php b/framework/console/Command.php index eef9035..9c6eb5d 100644 --- a/framework/console/Command.php +++ b/framework/console/Command.php @@ -331,7 +331,7 @@ abstract class Command extends \yii\base\Component } else { $input = trim($input); - return $input==='' ? $default : $input; + return ($input==='' && $default!==null) ? $default : $input; } }