schedule testing

This commit is contained in:
2018-11-26 08:24:47 -06:00
parent 390fb59fa3
commit 115b6353a3
4 changed files with 46 additions and 9 deletions

View File

@@ -26,8 +26,15 @@ class Kernel extends ConsoleKernel
*/
protected function schedule(Schedule $schedule)
{
$schedule->command('services:corpjournal')->everyFifteenMinutes()->withoutOverlapping();
//$schedule->command(GetCorps::class)->daily();
$schedule->command('services:corpjournal')
->everyHour()
->withoutOverlapping();
$schedule->command('services:getcorps')
->everyDay()
->withoutOverlapping();
//$schedule->command('services:sendmail')
// ->monthlyOn(1, '09:00')
// ->withoutOverlapping();
}
/**