添加初始化账号

This commit is contained in:
wuyanwen
2019-12-18 18:54:01 +08:00
parent 3d8b31b2dc
commit 57f6597e77
11 changed files with 303 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace {NAMESPACE};
use think\console\Command;
use think\console\Input;
use think\console\input\Argument;
use think\console\input\Option;
use think\console\Output;
class {CLASS}Command extends Command
{
protected function configure()
{
$this->setName('')
->setDescription('');
}
protected function execute(Input $input, Output $output)
{
}
}