console.php 370 B

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