Files
nl-jqrl-api/app/Console/Kernel.php

28 lines
573 B
PHP
Raw Normal View History

<?php
namespace App\Console;
2014-11-18 22:48:38 -06:00
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
2015-02-22 20:47:03 -06:00
class Kernel extends ConsoleKernel
{
/**
* Define the application's command schedule.
*/
protected function schedule(Schedule $schedule): void
2015-02-22 20:47:03 -06:00
{
2019-12-20 14:14:01 -06:00
// $schedule->command('inspire')->hourly();
2015-02-22 20:47:03 -06:00
}
/**
2017-07-17 09:12:08 -05:00
* Register the commands for the application.
*/
protected function commands(): void
{
2017-07-17 09:11:10 -05:00
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}