mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
40 lines
1 KiB
PHP
40 lines
1 KiB
PHP
<?php
|
|
|
|
namespace App\Console;
|
|
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
|
|
class Kernel extends ConsoleKernel
|
|
{
|
|
/**
|
|
* The Artisan commands provided by your application.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $commands = [
|
|
Commands\PaveIt::class,
|
|
Commands\CreateAdmin::class,
|
|
Commands\SendExpirationAlerts::class,
|
|
Commands\SendInventoryAlerts::class,
|
|
Commands\AssetImportCommand::class,
|
|
Commands\LicenseImportCommand::class,
|
|
Commands\Versioning::class,
|
|
Commands\SystemBackup::class,
|
|
];
|
|
|
|
/**
|
|
* Define the application's command schedule.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
* @return void
|
|
*/
|
|
protected function schedule(Schedule $schedule)
|
|
{
|
|
|
|
$schedule->command('alerts:inventory')->daily();
|
|
$schedule->command('alerts:expiring')->daily();
|
|
$schedule->command('snipeit:backup')->weekly();
|
|
}
|
|
}
|