added command to clear temp files
This commit is contained in:
@ -32,6 +32,7 @@ class Kernel extends ConsoleKernel
|
||||
$schedule->command('reminder:invoice')->dailyAt($schedule_time);
|
||||
$schedule->command('reminder:bill')->dailyAt($schedule_time);
|
||||
$schedule->command('recurring:check')->dailyAt($schedule_time);
|
||||
$schedule->command('storage-temp:clear')->dailyAt('17:00');
|
||||
}
|
||||
|
||||
/**
|
||||
@ -45,4 +46,14 @@ class Kernel extends ConsoleKernel
|
||||
|
||||
$this->load(__DIR__ . '/Commands');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the timezone that should be used by default for scheduled events.
|
||||
*
|
||||
* @return \DateTimeZone|string|null
|
||||
*/
|
||||
protected function scheduleTimezone()
|
||||
{
|
||||
return config('app.timezone');
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user