Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- <?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口座振替申請結果取得");
- }
- }
|