78fd8367a1
* Add alternative to using the artisan schedule runner * StyleCI fixes * Add additional cron time periods * Style fixes * Typo * Update the web cron to use the new system * Write out JSON for which tasks were run * Rename cron.php to just cron
54 lines
1.5 KiB
PHP
54 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Cron\Hourly\ClearExpiredSimbrief;
|
|
use App\Cron\Hourly\DeletePireps;
|
|
use App\Cron\Hourly\RemoveExpiredBids;
|
|
use App\Cron\Hourly\RemoveExpiredLiveFlights;
|
|
use App\Cron\Nightly\ApplyExpenses;
|
|
use App\Cron\Nightly\NewVersionCheck;
|
|
use App\Cron\Nightly\PilotLeave;
|
|
use App\Cron\Nightly\RecalculateBalances;
|
|
use App\Cron\Nightly\RecalculateStats;
|
|
use App\Cron\Nightly\SetActiveFlights;
|
|
use App\Events\CronFifteenMinute;
|
|
use App\Events\CronFiveMinute;
|
|
use App\Events\CronHourly;
|
|
use App\Events\CronMonthly;
|
|
use App\Events\CronNightly;
|
|
use App\Events\CronThirtyMinute;
|
|
use App\Events\CronWeekly;
|
|
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
|
|
|
|
/**
|
|
* All of the hooks for the cron jobs
|
|
*/
|
|
class CronServiceProvider extends ServiceProvider
|
|
{
|
|
protected $listen = [
|
|
CronFiveMinute::class => [],
|
|
CronFifteenMinute::class => [],
|
|
CronThirtyMinute::class => [],
|
|
CronHourly::class => [
|
|
DeletePireps::class,
|
|
RemoveExpiredBids::class,
|
|
RemoveExpiredLiveFlights::class,
|
|
ClearExpiredSimbrief::class,
|
|
],
|
|
CronNightly::class => [
|
|
ApplyExpenses::class,
|
|
RecalculateBalances::class,
|
|
PilotLeave::class,
|
|
SetActiveFlights::class,
|
|
RecalculateStats::class,
|
|
NewVersionCheck::class,
|
|
],
|
|
CronWeekly::class => [
|
|
],
|
|
CronMonthly::class => [
|
|
\App\Cron\Monthly\ApplyExpenses::class,
|
|
],
|
|
];
|
|
}
|