From 92eb8143762e116e8959f6270271fd5540ca50ac Mon Sep 17 00:00:00 2001 From: horus_arch Date: Wed, 7 Feb 2018 18:07:53 +0100 Subject: Adds basic site in laravel. --- site/app/Console/Kernel.php | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 site/app/Console/Kernel.php (limited to 'site/app/Console/Kernel.php') diff --git a/site/app/Console/Kernel.php b/site/app/Console/Kernel.php new file mode 100644 index 0000000..a8c5158 --- /dev/null +++ b/site/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 v1.2.3