nk-lihaink-cn/config/console.php

18 lines
584 B
PHP

<?php
// +----------------------------------------------------------------------
// | 控制台配置
// +----------------------------------------------------------------------
return [
// 指令定义
'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',
],
];