Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <?php
-
- namespace App\Console\Schedules;
-
- use App\Console\Commands\SMBCPaymentPoll as Command;
- use Illuminate\Console\Scheduling\Schedule;
-
- class SMBCPaymentPoll extends BaseSchedule
- {
-
- static public function register(Schedule $schedule)
- {
- $schedule->command(Command::class)
- ->everyTwoHours()
- ->unlessBetween('1:00', '6:00')
- ->description("SMBC支払結果取得");
- }
- }
|