BookStack/app/Console/Kernel.php

38 lines
741 B
PHP
Raw Normal View History

<?php namespace BookStack\Console;
2015-07-12 15:01:42 -04:00
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 = [
2017-11-19 10:56:06 -05:00
//
2015-07-12 15:01:42 -04:00
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
//
2015-07-12 15:01:42 -04:00
}
2017-11-19 10:56:06 -05:00
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__.'/Commands');
}
2015-07-12 15:01:42 -04:00
}