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
|
|
|
|
$schedule->command('system:cache')->everyMinute();
|
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');
|
|
|
|
}
|
|
|
|
}
|