自定义命令
根目录配置文件
config
下console.php
中添加
return [
// 指令定义
'commands' => [
'menu' => 'app\command\updateMenu',
],
];
目录
app\command\
下定义命令实现类,比如实现自动创建一个services类:
```
<?php
declare (strict_types=1);
namespace app\command;
use app\common\repositories\system\auth\MenuRepository;
use think\console\Command;
use think\console\Input;
use think\console\Output;
class FormatMenuPath extends Command
{
protected function configure()
{
// 指令配置
$this->setName(‘menu:format’)
->setDescription(‘the format menu command’);
}