|
- <?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)
- ->twiceDailyAt(9, 15, 30)
- ->unlessBetween('1:00', '6:00')
- ->description("SMBC支払結果取得(コンビニ)");
- }
- }
|