phpvms/app/Console/Kernel.php

50 lines
1.3 KiB
PHP
Raw Normal View History

2017-06-09 02:28:26 +08:00
<?php
namespace App\Console;
use App\Console\Cron\Monthly;
use App\Console\Cron\Nightly;
use App\Console\Cron\Weekly;
2017-06-09 02:28:26 +08:00
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
/**
* Class Kernel
* @package App\Console
*/
2017-06-09 02:28:26 +08:00
class Kernel extends ConsoleKernel
{
protected $commands = [
/*Commands\AcarsReplay::class,
2017-07-14 02:45:59 +08:00
Commands\CreateDatabase::class,
2017-12-30 00:23:42 +08:00
Commands\DevCommands::class,
Commands\YamlImport::class,
Commands\ImportFromClassic::class,
Commands\NavdataImport::class,
Commands\TestApi::class,*/
2017-06-09 02:28:26 +08:00
];
/**
* Define the application's command schedule.
* @param \Illuminate\Console\Scheduling\Schedule $schedule
2017-06-09 02:28:26 +08:00
* @return void
*/
protected function schedule(Schedule $schedule): void
2017-06-09 02:28:26 +08:00
{
$schedule->command(Nightly::class)->dailyAt('01:00');
$schedule->command(Weekly::class)->weeklyOn(0);
$schedule->command(Monthly::class)->monthlyOn(1);
2017-06-09 02:28:26 +08:00
}
/**
* Register the Closure based commands for the application.
* @return void
*/
protected function commands(): void
2017-06-09 02:28:26 +08:00
{
require app_path('Routes/console.php');
$this->load(__DIR__.'/Commands');
$this->load(__DIR__.'/Cron');
2017-06-09 02:28:26 +08:00
}
}