Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <?php
-
- namespace App\Console\Schedules;
-
- use App\Console\Commands\SMBCPoll as CommandsSMBCPoll;
- use Illuminate\Console\Scheduling\Schedule;
-
- class SMBCPoll extends BaseSchedule
- {
-
- static public function register(Schedule $schedule)
- {
- $schedule->command(CommandsSMBCPoll::class)
- ->everyThreeMinutes()
- ->unlessBetween('1:00', '6:00')
- ->description("SMBC口座振替申請結果取得");
- }
- }
|