2020-04-10 20:32:12 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console;
|
|
|
|
|
2024-07-04 00:45:55 +02:00
|
|
|
use App\Actions\DbMaintainAction;
|
2024-07-02 22:55:37 +02:00
|
|
|
use App\Form\Actions\PreventionRememberAction;
|
2023-02-07 23:55:46 +01:00
|
|
|
use App\Initialize\InitializeMembers;
|
2023-04-18 22:08:45 +02:00
|
|
|
use App\Invoice\Actions\InvoiceSendAction;
|
2020-04-10 20:32:12 +02:00
|
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
|
|
|
|
|
|
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 = [
|
2023-04-18 22:08:45 +02:00
|
|
|
InvoiceSendAction::class,
|
2023-02-07 23:55:46 +01:00
|
|
|
InitializeMembers::class,
|
2024-07-04 00:45:55 +02:00
|
|
|
DbMaintainAction::class,
|
2024-07-02 22:55:37 +02:00
|
|
|
PreventionRememberAction::class,
|
2020-04-10 20:32:12 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the application's command schedule.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function schedule(Schedule $schedule)
|
|
|
|
{
|
2024-07-04 00:45:55 +02:00
|
|
|
$schedule->command(DbMaintainAction::class)->daily();
|
2023-07-24 18:19:32 +02:00
|
|
|
$schedule->command(InitializeMembers::class)->dailyAt('03:00');
|
2024-07-02 22:55:37 +02:00
|
|
|
$schedule->command(PreventionRememberAction::class)->dailyAt('11:00');
|
2024-07-31 21:19:02 +02:00
|
|
|
$schedule->command(InvoiceSendAction::class)->dailyAt('10:00');
|
2020-04-10 20:32:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register the commands for the application.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function commands()
|
|
|
|
{
|
2023-08-06 17:35:11 +02:00
|
|
|
$this->load(__DIR__ . '/Commands');
|
2020-04-10 20:32:12 +02:00
|
|
|
|
|
|
|
require base_path('routes/console.php');
|
|
|
|
}
|
|
|
|
}
|