console.php 328 B

1234567891011
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 控制台配置
  4. // +----------------------------------------------------------------------
  5. return [
  6. // 指令定义
  7. 'commands' => [
  8. 'schedule:run' => app\command\Schedule::class,
  9. 'test' => 'app\command\Test'
  10. ],
  11. ];