mirror of
https://gitee.com/ulthon/layui-ul.git
synced 2026-07-01 18:42:47 +08:00
19 lines
431 B
PHP
19 lines
431 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 控制台配置
|
|
// +----------------------------------------------------------------------
|
|
|
|
use app\command\make\Component;
|
|
use app\command\make\View;
|
|
use app\command\ScanDemo;
|
|
|
|
return [
|
|
// 指令定义
|
|
'commands' => [
|
|
'app\command\ResetPassword',
|
|
View::class,
|
|
ScanDemo::class,
|
|
Component::class
|
|
],
|
|
];
|