]> BookStack Code Mirror - bookstack/blob - app/Console/Kernel.php
Added locale and text direction to html templates
[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         //
15     ];
16
17     /**
18      * Define the application's command schedule.
19      *
20      * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
21      * @return void
22      */
23     protected function schedule(Schedule $schedule)
24     {
25         //
26     }
27
28     /**
29      * Register the commands for the application.
30      *
31      * @return void
32      */
33     protected function commands()
34     {
35         $this->load(__DIR__.'/Commands');
36     }
37 }
Morty Proxy This is a proxified and sanitized view of the page, visit original site.