feat(console): 添加 --force-force 参数以跳过所有交互确认

This commit is contained in:
augushong
2026-01-31 23:00:51 +08:00
parent 0fad2b7e10
commit 5bee1b3733
7 changed files with 181 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
<?php
namespace app\common\console;
use base\common\console\InputBase;
class Input extends InputBase
{
}

View File

@@ -0,0 +1,9 @@
<?php
namespace app\common\console;
use base\common\console\OutputBase;
class Output extends OutputBase
{
}

View File

@@ -0,0 +1,9 @@
<?php
namespace app\common\provider;
use base\common\provider\ConsoleBase;
class Console extends ConsoleBase
{
}