modified 初始化自动构建

This commit is contained in:
zhaoxiang 2021-02-24 16:21:49 +08:00
parent e69aec0776
commit 526d728a4f

View File

@ -32,6 +32,10 @@ class AutoBuildFile extends Command {
if ($dsn['control']) {
$dsn['name'] = $this->getControlName($output);
$output->comment('Please choose module (1:admin;2:api, default 1):');
$input = trim(fgets(fopen('php://stdin', 'r')));
$dsn['module'] = strlen($input) ? $input : 1;
}
$output->comment('Do you need to build a menu? 1 or 0 (default 1):');
@ -60,10 +64,6 @@ class AutoBuildFile extends Command {
$dsn['table'] = strlen($input) ? $input : 0;
}
$output->comment('Please choose module (1:admin;2:api, default 1):');
$input = trim(fgets(fopen('php://stdin', 'r')));
$dsn['module'] = strlen($input) ? $input : 1;
return $dsn;
}