1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace App\Console;
- use Illuminate\Console\Scheduling\Schedule;
- use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
- class Kernel extends ConsoleKernel
- {
-
- protected $commands = [
-
- ];
-
- protected function schedule(Schedule $schedule)
- {
-
- $schedule->command('v2board:cache')->hourly();
-
- $schedule->command('check:order')->everyMinute();
- $schedule->command('check:commission')->everyMinute();
-
- $schedule->command('reset:traffic')->monthly();
- $schedule->command('reset:serverLog')->monthly();
-
- $schedule->command('send:remindMail')->dailyAt('11:30');
- }
-
- protected function commands()
- {
- $this->load(__DIR__ . '/Commands');
- require base_path('routes/console.php');
- }
- }
|