We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2ddf0e commit 99b49e2Copy full SHA for 99b49e2
app/command/AutoBuildFile.php
@@ -14,9 +14,20 @@ protected function configure() {
14
$this->setName('apiadmin:autoBuild')->setDescription('ApiAdmin自动构建文件');
15
}
16
17
+ /**
18
+ * 自动构建
19
+ * @param Input $input
20
+ * @param Output $output
21
+ * @throws \think\db\exception\DataNotFoundException
22
+ * @throws \think\db\exception\DbException
23
+ * @throws \think\db\exception\ModelNotFoundException
24
+ * @author zhaoxiang <zhaoxiang051405@gmail.com>
25
+ */
26
protected function execute(Input $input, Output $output): void {
27
$config = $this->parseConfig($output);
28
(new AutoBuild())->run($config);
29
+
30
+ $output->info('Build files successful');
31
32
33
/**
0 commit comments