hypothetical/app/Console/Kernel.php

43 lines
848 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
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
2016-08-19 16:38:49 -04:00
//
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
2016-01-03 23:55:13 -05:00
// $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');
}
}