1 <?php namespace BookStack\Console;
3 use Illuminate\Console\Scheduling\Schedule;
4 use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
6 class Kernel extends ConsoleKernel
9 * The Artisan commands provided by your application.
13 protected $commands = [
14 Commands\ClearViews::class,
15 Commands\ClearActivity::class,
16 Commands\ClearRevisions::class,
17 Commands\RegeneratePermissions::class,
18 Commands\RegenerateSearch::class
22 * Define the application's command schedule.
24 * @param \Illuminate\Console\Scheduling\Schedule $schedule
27 protected function schedule(Schedule $schedule)