adrema/app/Console/Kernel.php

47 lines
1.1 KiB
PHP
Raw Normal View History

2020-04-10 20:32:12 +02:00
<?php
namespace App\Console;
2023-02-07 01:38:27 +01:00
use App\Initialize\Actions\InitializeAction;
use App\Initialize\InitializeMembers;
2022-11-09 01:33:31 +01:00
use App\Letter\Actions\LetterSendAction;
2020-04-10 20:32:12 +02:00
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
2022-12-13 21:00:38 +01:00
use Laravel\Telescope\Console\PruneCommand;
2020-04-10 20:32:12 +02:00
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
2023-02-13 15:56:20 +01:00
* @var array<int, class-string>
2020-04-10 20:32:12 +02:00
*/
2022-03-11 20:19:17 +01:00
protected $commands = [
2022-11-09 01:33:31 +01:00
LetterSendAction::class,
2023-02-07 01:38:27 +01:00
InitializeAction::class,
InitializeMembers::class,
2020-04-10 20:32:12 +02:00
];
/**
* Define the application's command schedule.
*
* @return void
*/
protected function schedule(Schedule $schedule)
{
2022-12-13 21:00:38 +01:00
$schedule->command(PruneCommand::class, ['--hours' => 168])->daily(); // 168h = 7 Tage
2020-04-10 20:32:12 +02:00
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}