Files
spa-api/app/Console/Kernel.php

43 lines
848 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
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
//
2015-02-22 20:47:03 -06:00
];
2015-02-22 20:47:03 -06:00
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
// $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.
*
* @return void
*/
protected function commands()
{
2017-07-17 09:11:10 -05:00
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}