BookStack/app/Console/Kernel.php

41 lines
749 B
PHP
Raw Normal View History

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