kuvia/app/Console/Kernel.php

52 lines
1.4 KiB
PHP
Raw Normal View History

2021-01-11 11:49:50 +00:00
<?php
namespace App\Console;
2021-01-12 20:59:49 +00:00
use App\Console\Commands\CalculateSpace;
use App\Console\Commands\CalculateTraffic;
2021-01-19 23:02:04 +00:00
use App\Console\Commands\EXIFRead;
2021-01-17 02:20:21 +00:00
use App\Console\Commands\ImageCacheAll;
2021-01-11 11:49:50 +00:00
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 = [
2021-01-12 20:59:49 +00:00
CalculateSpace::class,
2021-01-17 02:20:21 +00:00
CalculateTraffic::class,
2021-01-19 23:02:04 +00:00
ImageCacheAll::class,
EXIFRead::class
2021-01-11 11:49:50 +00:00
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
2021-01-17 23:44:32 +00:00
$schedule->command('calculate:space')->hourlyAt(10)->withoutOverlapping();
2021-01-17 01:43:28 +00:00
//$schedule->command('calculate:traffic')->hourlyAt(10)->withoutOverlapping();
2021-01-17 23:44:32 +00:00
$schedule->command('calculate:traffic')->everyFiveMinutes()->withoutOverlapping();
2021-01-19 23:11:25 +00:00
$schedule->command('exit:read')->everyMinute()->withoutOverlapping();
2021-01-11 11:49:50 +00:00
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}