]> BookStack Code Mirror - bookstack/blob - app/Console/Kernel.php
Added migration file.
[bookstack] / app / Console / Kernel.php
1 <?php namespace BookStack\Console;
2
3 use Illuminate\Console\Scheduling\Schedule;
4 use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
5
6 class Kernel extends ConsoleKernel
7 {
8     /**
9      * The Artisan commands provided by your application.
10      *
11      * @var array
12      */
13     protected $commands = [
14         Commands\ClearViews::class,
15         Commands\ClearActivity::class,
16         Commands\ClearRevisions::class,
17         Commands\RegeneratePermissions::class,
18         Commands\RegenerateSearch::class,
19         Commands\UpgradeDatabaseEncoding::class
20     ];
21
22     /**
23      * Define the application's command schedule.
24      *
25      * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
26      * @return void
27      */
28     protected function schedule(Schedule $schedule)
29     {
30         //
31     }
32 }