adrema/app/Console/Kernel.php

42 lines
824 B
PHP
Raw Normal View History

2020-04-10 20:32:12 +02:00
<?php
namespace App\Console;
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;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
2022-03-11 20:19:17 +01:00
protected $commands = [
2022-11-09 01:33:31 +01:00
LetterSendAction::class,
2020-04-10 20:32:12 +02:00
];
/**
* Define the application's command schedule.
*
* @return void
*/
protected function schedule(Schedule $schedule)
{
// $schedule->command('inspire')->hourly();
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}