123456789101112 |
- <?php
- // +----------------------------------------------------------------------
- // | 控制台配置
- // +----------------------------------------------------------------------
- use app\command\sysGood;
- return [
- // 指令定义
- 'commands' => [
- "makemodel"=>\app\command\makeModel::class,
- "sysgood"=>sysGood::class,
- ],
- ];
|