6 use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
8 class Kernel extends ConsoleKernel
16 Commands\PaveIt::class,
17 Commands\CreateAdmin::class,
18 Commands\SendExpirationAlerts::class,
19 Commands\SendInventoryAlerts::class,
20 Commands\AssetImportCommand::class,
21 Commands\LicenseImportCommand::class,
22 Commands\Versioning::class,
23 Commands\SystemBackup::class,
32 protected function schedule(Schedule $schedule)
35 $schedule->command(
'alerts:inventory')->daily();
36 $schedule->command(
'alerts:expiring')->daily();
37 $schedule->command(
'snipeit:backup')->weekly();
schedule(Schedule $schedule)
Define the application's command schedule.