console.php 762 B

12345678910111213141516
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 控制台配置
  4. // +----------------------------------------------------------------------
  5. return [
  6. // 指令定义
  7. 'commands' => [
  8. "Solver" => "app\command\Solver",
  9. "FstVerifyChecker" => "app\command\FstVerifyChecker", //人才认定初审阶段检查
  10. "RegisterMessenger" => "app\command\RegisterMessenger", //注册短信提醒后台审核
  11. "DeptVerifyChecker" => "app\command\DeptVerifyChecker", //人才认定部门审核阶段检查
  12. "ReVerifyChecker" => "app\command\ReVerifyChecker", //人才认定复审阶段检查
  13. "ExpireVerifyChecker" => "app\command\ExpireVerifyChecker", //人才认定过期检查
  14. ],
  15. ];