- <?php
-
- namespace App\Console\Schedules;
-
- use App\Console\Commands\BankAccountRegisterRemaind as CommandsBankAccountRegisterRemaind;
- use Illuminate\Console\Scheduling\Schedule;
-
- class BankAccountRegisterRemaind extends BaseSchedule
- {
-
- static public function register(Schedule $schedule)
- {
- $schedule->command(CommandsBankAccountRegisterRemaind::class)
- ->hourly()
- ->description("口座登録催促通知");
- }
- }
|