2FAuth/app/Console/Kernel.php

35 lines
728 B
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
2020-10-12 15:44:11 +02:00
*
* @codeCoverageIgnore Because no code will always remains Not Executed code
2019-05-20 07:37:41 +02:00
*/
protected function schedule(Schedule $schedule)
{
2020-10-12 15:44:11 +02:00
//
2019-05-20 07:37:41 +02:00
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}