2017-03-19 08:48:44 -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-03-19 08:48:44 -04:00
|
|
|
Commands\ClearViews::class,
|
|
|
|
Commands\ClearActivity::class,
|
|
|
|
Commands\ClearRevisions::class,
|
|
|
|
Commands\RegeneratePermissions::class,
|
2017-07-22 10:54:17 -04:00
|
|
|
Commands\RegenerateSearch::class,
|
|
|
|
Commands\UpgradeDatabaseEncoding::class
|
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)
|
|
|
|
{
|
2017-02-26 04:14:18 -05:00
|
|
|
//
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
}
|