v2board/app/Console/Kernel.php

51 lines
1.2 KiB
PHP
Raw Normal View History

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
2020-12-20 21:06:23 +08:00
$schedule->command('v2board:statistics')->daily();
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();
$schedule->command('reset:serverLog')->quarterly();
2019-12-30 15:13:11 +08:00
// send
$schedule->command('send:remindMail')->dailyAt('11:30');
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');
}
}