nk-lihaink-cn/config/console.php

26 lines
592 B
PHP
Raw Normal View History

2021-01-30 20:59:12 +08:00
<?php
2021-01-30 20:59:12 +08:00
// +----------------------------------------------------------------------
2021-01-30 20:59:12 +08:00
// | 控制台配置
2021-01-30 20:59:12 +08:00
// +----------------------------------------------------------------------
2021-01-30 20:59:12 +08:00
return [
2021-01-30 20:59:12 +08:00
// 指令定义
2021-01-30 20:59:12 +08:00
'commands' => [
'crud' => 'app\crud\command\Crud',
'crud-c' => 'app\crud\command\CrudController',
'crud-m' => 'app\crud\command\CrudModel',
'crud-v' => 'app\crud\command\CrudValidate',
'crud-l' => 'app\crud\command\CrudList',
'crud-a' => 'app\crud\command\CrudAdd',
'crud-e' => 'app\crud\command\CrudEdit',
'crud-r' => 'app\crud\command\CrudRead',
2021-01-30 20:59:12 +08:00
],
2021-01-30 20:59:12 +08:00
];