BookStack/app/Console/Kernel.php

41 lines
749 B
PHP
Raw Normal View History

2021-06-26 11:23:15 -04:00
<?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.
*
2021-06-26 11:23:15 -04:00
* @param \Illuminate\Console\Scheduling\Schedule $schedule
*
2015-07-12 15:01:42 -04:00
* @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()
{
2021-06-26 11:23:15 -04:00
$this->load(__DIR__ . '/Commands');
2017-11-19 10:56:06 -05:00
}
2015-07-12 15:01:42 -04:00
}