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.
|
- <?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()
- ->description("SMBC口座振替申請結果取得");
- }
- }
|