v2board/app/Console/Kernel.php

52 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.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
2019-11-30 17:53:54 +08:00
// check order
2019-10-29 15:33:36 +08:00
$schedule->command('check:order')->everyMinute();
2019-11-30 17:53:54 +08:00
// check expire
2019-10-29 15:33:36 +08:00
$schedule->command('check:expire')->everyMinute();
2019-11-30 17:53:54 +08:00
// check commission
2019-11-29 02:34:19 +08:00
$schedule->command('check:commission')->everyMinute();
2019-11-30 17:53:54 +08:00
// system cache
2019-12-17 16:15:36 +08:00
$schedule->command('system:cache')->hourly();
2019-12-23 01:09:38 +08:00
// reset
2019-12-15 15:17:32 +08:00
$schedule->command('reset:traffic')->monthlyOn(1, '00:00');
2019-12-23 01:09:38 +08:00
$schedule->command('reset:serverLog')->monthlyOn(1, '00:00');
2019-10-29 15:33:36 +08:00
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}