Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

19 lines
445B

  1. <?php
  2. namespace App\Console\Schedules;
  3. use App\Console\Commands\SMBCPoll as CommandsSMBCPoll;
  4. use Illuminate\Console\Scheduling\Schedule;
  5. class SMBCPoll extends BaseSchedule
  6. {
  7. static public function register(Schedule $schedule)
  8. {
  9. $schedule->command(CommandsSMBCPoll::class)
  10. ->everyThreeMinutes()
  11. ->unlessBetween('1:00', '6:00')
  12. ->description("SMBC口座振替申請結果取得");
  13. }
  14. }