diff --git a/app/command/AutoBuildFile.php b/app/command/AutoBuildFile.php index 47357de..741fbc2 100644 --- a/app/command/AutoBuildFile.php +++ b/app/command/AutoBuildFile.php @@ -14,9 +14,20 @@ class AutoBuildFile extends Command { $this->setName('apiadmin:autoBuild')->setDescription('ApiAdmin自动构建文件'); } + /** + * 自动构建 + * @param Input $input + * @param Output $output + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + * @author zhaoxiang + */ protected function execute(Input $input, Output $output): void { $config = $this->parseConfig($output); (new AutoBuild())->run($config); + + $output->info('Build files successful'); } /**