console.php 394 B

123456789101112
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 控制台配置
  4. // +----------------------------------------------------------------------
  5. return [
  6. // 指令定义
  7. 'commands' => [
  8. 'fileconsole' => 'app\command\FileConsole',
  9. 'makemodel' => 'app\command\MakeModel',
  10. 'makecontroller' => 'app\command\MakeController',
  11. ],
  12. ];