3 namespace BookStack\Console;
5 use Illuminate\Console\Scheduling\Schedule;
6 use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
8 class Kernel extends ConsoleKernel
11 * The Artisan commands provided by your application.
15 protected $commands = [
16 \BookStack\Console\Commands\Inspire::class,
17 \BookStack\Console\Commands\ResetViews::class,
21 * Define the application's command schedule.
23 * @param \Illuminate\Console\Scheduling\Schedule $schedule
26 protected function schedule(Schedule $schedule)
28 $schedule->command('inspire')