hypothetical/app/Console/Kernel.php

33 lines
681 B
PHP
Raw Normal View History

<?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
*/
protected function schedule(Schedule $schedule)
{
// $schedule->command('inspire')->hourly();
}
2016-08-19 16:38:49 -04:00
/**
* Register the commands for the application.
2016-08-19 16:38:49 -04:00
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__.'/Commands');
2016-08-19 16:38:49 -04:00
require base_path('routes/console.php');
}
}