您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

32 行
852B

  1. <?php
  2. namespace App\Console;
  3. use Illuminate\Console\Scheduling\Schedule;
  4. use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
  5. class Kernel extends ConsoleKernel
  6. {
  7. /**
  8. * Define the application's command schedule.
  9. */
  10. protected function schedule(Schedule $schedule): void
  11. {
  12. Schedules\HeartBeat::register($schedule);
  13. Schedules\SMBCPoll::register($schedule);
  14. Schedules\BankAccountRegisterRemaind::register($schedule);
  15. Schedules\SeasonTikcetContractSelectionFillCandidates::register($schedule);
  16. Schedules\SeasonTikcetContractSelectionSetResult::register($schedule);
  17. }
  18. /**
  19. * Register the commands for the application.
  20. */
  21. protected function commands(): void
  22. {
  23. $this->load(__DIR__ . '/Commands');
  24. require base_path('routes/console.php');
  25. }
  26. }