10 lines
406 B
PHP
10 lines
406 B
PHP
<?php
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
Schedule::command('app:update-alliances')->dailyAt('09:00')->runInBackground();
|
|
Schedule::command('app:update-arrived-flights')->hourly()->runInBackground();
|
|
Schedule::command('app:update-departed-flights')->everyMinute()->runInBackground();
|
|
Schedule::command('app:flight-feed-update')->everyMinute()->runInBackground();
|