Skip to main content

tighten/laravelversions

97 stars
1 code files
View tighten/laravelversions on GitHub

app/Console/Kernel.php

Open in GitHub
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
 
class Kernel extends ConsoleKernel
{
//
protected function schedule(Schedule $schedule)
{
$schedule->command('fetch-laravel-versions')->hourly();
$schedule->command('tweet-important-dates')->dailyAt('08:00')->timezone('America/New_York');
}
//
}