Files
Motula-Translate-Backend/app/Console/Kernel.php
c.girardi e6f3fcbb4e Implement roles management;
Add user profile;
Improve Ui;
Clean code;
Minor fix;
Typo;
2024-02-21 16:56:08 +01:00

29 lines
615 B
PHP

<?php
namespace App\Console;
use App\Jobs\SendMailJob;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* Define the application's command schedule.
*/
protected function schedule(Schedule $schedule): void
{
//$schedule->job(new SendMailJob(null))->everyTenSeconds();
}
/**
* Register the commands for the application.
*/
protected function commands(): void
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}