From 77f1076c15fbb8bf826a58cb2d556801a82a81ee Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Wed, 26 Dec 2018 09:52:37 -0500 Subject: - Add laravel site directories --- laravel/app/Console/Kernel.php | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 laravel/app/Console/Kernel.php (limited to 'laravel/app/Console/Kernel.php') diff --git a/laravel/app/Console/Kernel.php b/laravel/app/Console/Kernel.php new file mode 100644 index 0000000..a8c5158 --- /dev/null +++ b/laravel/app/Console/Kernel.php @@ -0,0 +1,42 @@ +command('inspire') + // ->hourly(); + } + + /** + * Register the commands for the application. + * + * @return void + */ + protected function commands() + { + $this->load(__DIR__.'/Commands'); + + require base_path('routes/console.php'); + } +} -- cgit 1.4.1