2019-10-29 15:33:36 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console;
|
|
|
|
|
|
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
|
|
|
|
|
|
class Kernel extends ConsoleKernel
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The Artisan commands provided by your application.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $commands = [
|
|
|
|
//
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the application's command schedule.
|
|
|
|
*
|
2020-01-11 13:36:52 +08:00
|
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
2019-10-29 15:33:36 +08:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function schedule(Schedule $schedule)
|
|
|
|
{
|
2019-12-30 21:05:48 +08:00
|
|
|
// v2board
|
2021-07-24 00:31:23 +08:00
|
|
|
$schedule->command('v2board:statistics')->dailyAt('0:10');
|
2019-12-30 15:13:11 +08:00
|
|
|
// check
|
2019-10-29 15:33:36 +08:00
|
|
|
$schedule->command('check:order')->everyMinute();
|
2019-11-29 02:34:19 +08:00
|
|
|
$schedule->command('check:commission')->everyMinute();
|
2019-12-23 01:09:38 +08:00
|
|
|
// reset
|
2020-03-02 00:04:07 +08:00
|
|
|
$schedule->command('reset:traffic')->daily();
|
2020-08-10 19:46:06 +08:00
|
|
|
$schedule->command('reset:serverLog')->quarterly();
|
2019-12-30 15:13:11 +08:00
|
|
|
// send
|
|
|
|
$schedule->command('send:remindMail')->dailyAt('11:30');
|
2021-09-05 10:32:33 +08:00
|
|
|
// horizon metrics
|
|
|
|
$schedule->command('horizon:snapshot')->everyFiveMinutes();
|
2019-10-29 15:33:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register the commands for the application.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function commands()
|
|
|
|
{
|
2020-01-11 13:36:52 +08:00
|
|
|
$this->load(__DIR__ . '/Commands');
|
2019-10-29 15:33:36 +08:00
|
|
|
|
|
|
|
require base_path('routes/console.php');
|
|
|
|
}
|
|
|
|
}
|