Kernel.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace App\Console;
  3. use Illuminate\Console\Scheduling\Schedule;
  4. use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
  5. use App\Jobs\FiveSecondTaskJob;
  6. class Kernel extends ConsoleKernel
  7. {
  8. protected $commands = [
  9. \App\Console\Commands\StartFiveSecondTask::class,
  10. ];
  11. /**
  12. * Define the application's command schedule.
  13. *
  14. * @param \Illuminate\Console\Scheduling\Schedule $schedule
  15. * @return void
  16. */
  17. protected function schedule(Schedule $schedule)
  18. {
  19. // $schedule->command('inspire')->hourly();
  20. // $schedule->job(new FiveSecondTaskJob)
  21. // ->cron('*/5 * * * * *') // 每秒的第0,5,10,15...秒执行
  22. // ->withoutOverlapping() // 防止重复执行
  23. // ->name('five-second-task') // 给任务起个名字
  24. // ->onOneServer(); // 如果在多服务器环境
  25. }
  26. /**
  27. * Register the commands for the application.
  28. *
  29. * @return void
  30. */
  31. protected function commands()
  32. {
  33. $this->load(__DIR__.'/Commands');
  34. require base_path('routes/console.php');
  35. }
  36. }