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

43 lines
928 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 = [
// Commands\Inspire::class,
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
}
/**
* Register the Closure based commands for the application.
*
* @return void
*/
protected function commands()
{
// $this->command('build {project}', function ($project) {
// $this->info('Building project...');
// });
}
}