console.php 592 B

12345678910111213141516171819202122232425
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 控制台配置
  4. // +----------------------------------------------------------------------
  5. return [
  6. // 指令定义
  7. 'commands' => [
  8. 'crud' => 'app\crud\command\Crud',
  9. 'crud-c' => 'app\crud\command\CrudController',
  10. 'crud-m' => 'app\crud\command\CrudModel',
  11. 'crud-v' => 'app\crud\command\CrudValidate',
  12. 'crud-l' => 'app\crud\command\CrudList',
  13. 'crud-a' => 'app\crud\command\CrudAdd',
  14. 'crud-e' => 'app\crud\command\CrudEdit',
  15. 'crud-r' => 'app\crud\command\CrudRead',
  16. ],
  17. ];